/* ========================================
   MYRIAM COUTURE LIMITED — Main Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --brown:    #4E342E;
  --tan:      #B08968;
  --gold:     #D4AF37;
  --gold-lt:  #E8C84A;
  --cream:    #F8F5F2;
  --cream-dk: #EDE8E1;
  --charcoal: #333333;
  --white:    #FFFFFF;
  --shadow:   0 4px 24px rgba(78,52,46,0.12);
  --shadow-lg:0 8px 40px rgba(78,52,46,0.18);
  --radius:   12px;
  --radius-sm:6px;
  --trans:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
  --cream:    #1A1410;
  --cream-dk: #231D18;
  --charcoal: #E8E0D8;
  --white:    #2A211A;
  --shadow:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.5);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--brown);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 { color: var(--tan); }

a { color: var(--tan); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

/* ---- Loading Screen ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 4px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--gold);
  animation: loaderBar 2s ease forwards;
}
@keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
@keyframes loaderBar { from{width:0} to{width:100%} }

/* ---- Navbar ---- */
/* ---- Top Info Bar ---- */
#topbar {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  padding: 7px 0;
  position: fixed; top: 0; width: 100%; z-index: 1001;
  transition: transform 0.3s ease;
}
#topbar.hidden { transform: translateY(-100%); }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.topbar-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.82); text-decoration: none;
  transition: color 0.2s;
}
.topbar-item:hover { color: var(--gold); }
.topbar-item i {
  color: var(--gold); font-size: 0.72rem;
}
.topbar-divider {
  width: 1px; height: 14px; background: rgba(255,255,255,0.2);
}
.topbar-social a {
  color: rgba(255,255,255,0.6); font-size: 0.78rem;
  margin-left: 10px; transition: color 0.2s;
}
.topbar-social a:hover { color: var(--gold); }
@media (max-width: 575px) {
  .topbar-right { display: none; }
  .topbar-left { justify-content: center; width: 100%; gap: 12px; }
  #topbar { padding: 5px 0; }
}

#navbar {
  position: fixed; top: 34px; width: 100%; z-index: 1000;
  padding: 1rem 0;
  transition: var(--trans);
}
#navbar.topbar-hidden { top: 0; }
#navbar.scrolled {
  background: rgba(248,245,242,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(78,52,46,0.1);
  padding: 0.6rem 0;
}
[data-theme="dark"] #navbar.scrolled {
  background: rgba(26,20,16,0.95);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
}
#navbar.scrolled .nav-brand { color: var(--brown) !important; }
[data-theme="dark"] #navbar.scrolled .nav-brand { color: var(--gold) !important; }
.nav-brand span { color: var(--gold); }

.navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9) !important;
  padding: 0.5rem 1rem !important;
  text-transform: uppercase;
  transition: var(--trans);
}
#navbar.scrolled .navbar-nav .nav-link { color: var(--charcoal) !important; }
.navbar-nav .nav-link:hover { color: var(--gold) !important; }

.nav-cta {
  background: var(--gold);
  color: var(--brown) !important;
  border-radius: 30px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--brown); color: var(--white) !important; }

/* Dark mode toggle */
.dark-toggle {
  background: none; border: 1px solid rgba(255,255,255,0.3);
  color: white; border-radius: 20px;
  padding: 0.3rem 0.8rem; cursor: pointer;
  font-size: 0.85rem; transition: var(--trans);
}
#navbar.scrolled .dark-toggle { border-color: var(--brown); color: var(--brown); }
.dark-toggle:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }

/* ---- Buttons ---- */
.btn-primary-mc {
  background: var(--gold);
  color: var(--brown);
  border: 2px solid var(--gold);
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--trans);
  display: inline-block;
  cursor: pointer;
}
.btn-primary-mc:hover {
  background: var(--brown); color: var(--white);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-mc {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--trans);
  display: inline-block;
  cursor: pointer;
}
.btn-outline-mc:hover {
  background: var(--white); color: var(--brown);
  transform: translateY(-2px);
}

.btn-brown {
  background: var(--brown); color: var(--white);
  border: 2px solid var(--brown);
  padding: 0.75rem 2rem;
  border-radius: 40px; font-weight: 600;
  font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.5px; transition: var(--trans);
  display: inline-block; cursor: pointer;
}
.btn-brown:hover {
  background: var(--gold); color: var(--brown);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- Section Layout ---- */
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}
[data-theme="dark"] .section-title { color: var(--tan); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--tan);
  max-width: 600px;
  line-height: 1.7;
}

.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--tan));
  border-radius: 2px;
  margin: 1.2rem 0;
}

/* ---- Hero ---- */
#hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
}
/* Hero Carousel */
.hero-carousel {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,12,8,0.88) 0%,
    rgba(26,12,8,0.65) 55%,
    rgba(26,12,8,0.25) 100%
  );
}
/* Carousel dots */
.hero-dots {
  position: absolute; bottom: 5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none;
  cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-dot.active {
  background: var(--gold); width: 24px; border-radius: 4px;
}
/* Carousel arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; width: 46px; height: 46px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer;
  font-size: 0.9rem; transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }
@media (max-width: 575px) {
  .hero-arrow { display: none; }
}
/* Slide caption badge */
.slide-caption {
  position: absolute; bottom: 8rem; right: 2rem; z-index: 3;
  background: rgba(212,175,55,0.9); color: var(--brown);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s 0.8s, transform 0.4s 0.8s;
}
.hero-slide.active .slide-caption { opacity: 1; transform: translateY(0); }
@media (max-width: 575px) { .slide-caption { display: none; } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg-image { display: none; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-subheadline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3; text-align: center;
}
.scroll-dot {
  width: 1.5rem; height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex; align-items: flex-start;
  justify-content: center; padding-top: 6px;
  margin: 0 auto;
}
.scroll-dot::after {
  content: ''; width: 4px; height: 8px;
  background: var(--gold); border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,100%{ transform: translateY(0); opacity:1 }
  50%{ transform: translateY(8px); opacity:0.3 }
}

.hero-stats {
  position: absolute; bottom: 0; right: 0;
  z-index: 2; padding: 2rem;
  display: flex; gap: 2rem;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---- About ---- */
#about { background: var(--white); }
[data-theme="dark"] #about { background: var(--cream-dk); }

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--tan));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -2.45rem; top: 6px;
  width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 0.3rem;
}
.timeline-title {
  font-size: 1.1rem; font-weight: 600;
  color: var(--brown); margin-bottom: 0.3rem;
}
.timeline-text { font-size: 0.9rem; color: var(--tan); }

.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  transition: var(--trans);
}
[data-theme="dark"] .value-card { background: var(--cream); }
.value-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.value-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-title { font-size: 1rem; font-weight: 600; color: var(--brown); margin-bottom: 0.3rem; }
.value-text { font-size: 0.875rem; color: #666; }

/* ---- Products ---- */
#products { background: var(--cream); }
[data-theme="dark"] #products { background: var(--cream); }

.product-filter-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--tan);
  border-radius: 30px;
  background: none;
  color: var(--tan);
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brown); color: var(--white); border-color: var(--brown);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  height: 100%;
  display: flex; flex-direction: column;
}
[data-theme="dark"] .product-card { background: var(--cream-dk); }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--cream-dk), var(--cream));
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream-dk) 0%, #D5C5B5 100%);
  font-size: 3rem;
}
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--brown);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0.25rem 0.75rem; border-radius: 20px;
}
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--tan); font-weight: 600; margin-bottom: 0.5rem;
}
.product-name {
  font-size: 1.15rem; font-weight: 600;
  color: var(--brown); margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
}
.product-desc {
  font-size: 0.875rem; color: #777;
  line-height: 1.6; flex: 1; margin-bottom: 1.2rem;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-weight: 700; color: var(--brown);
  font-size: 0.9rem;
}

/* ---- Why Choose Us ---- */
#why-us {
  background: linear-gradient(135deg, var(--brown) 0%, #3D2820 100%);
}
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.04);
  transition: var(--trans);
}
.why-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  border: 1px solid rgba(212,175,55,0.3);
}
.why-title {
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.5rem;
}
.why-text { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ---- Gallery ---- */
#gallery { background: var(--white); }
[data-theme="dark"] #gallery { background: var(--cream-dk); }

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
@media (max-width: 992px) { .gallery-grid { columns: 2; } }
@media (max-width: 576px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(78,52,46,0.85), transparent);
  opacity: 0; transition: var(--trans);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: var(--white); font-size: 0.875rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--trans);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: white; font-size: 2rem; cursor: pointer;
  background: none; border: none;
}

/* ---- Sustainability ---- */
#sustainability { background: var(--cream-dk); }
[data-theme="dark"] #sustainability { background: var(--cream); }

.sustain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
[data-theme="dark"] .sustain-card { background: var(--cream-dk); }
.sustain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sustain-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.25rem;
}
.sustain-label {
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--tan);
  font-weight: 600; margin-bottom: 0.75rem;
}
.sustain-text { font-size: 0.875rem; color: #777; line-height: 1.6; }

/* ---- Testimonials ---- */
#testimonials { background: var(--white); }
[data-theme="dark"] #testimonials { background: var(--cream-dk); }

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--cream-dk);
  position: relative; overflow: hidden;
  transition: var(--trans);
}
[data-theme="dark"] .testimonial-card { background: var(--cream); border-color: rgba(176,137,104,0.2); }
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: -0.5rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem; line-height: 1;
  color: var(--gold); opacity: 0.15;
  pointer-events: none;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--charcoal); margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  background: var(--cream-dk);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--brown); font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--brown); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--tan); }

/* ---- Custom Orders ---- */
#custom-orders {
  background: linear-gradient(135deg, #F5EFE8 0%, #EDE5D8 100%);
}
[data-theme="dark"] #custom-orders {
  background: linear-gradient(135deg, #231D18 0%, #1A1410 100%);
}
.custom-sector {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
  transition: var(--trans);
}
[data-theme="dark"] .custom-sector { background: var(--cream-dk); }
.custom-sector:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.custom-sector-icon { font-size: 1.5rem; flex-shrink: 0; }
.custom-sector-name { font-weight: 600; color: var(--brown); font-size: 0.95rem; }
.custom-sector-desc { font-size: 0.8rem; color: #777; }

/* ---- Blog ---- */
#blog { background: var(--cream); }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  height: 100%;
}
[data-theme="dark"] .blog-card { background: var(--cream-dk); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; overflow: hidden; background: var(--cream-dk); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.5rem;
}
.blog-title {
  font-size: 1.1rem; font-weight: 600;
  color: var(--brown); margin-bottom: 0.6rem;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}
.blog-excerpt { font-size: 0.875rem; color: #777; line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { font-size: 0.78rem; color: var(--tan); }

/* ---- Contact ---- */
#contact { background: var(--white); }
[data-theme="dark"] #contact { background: var(--cream-dk); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
}
[data-theme="dark"] .contact-form-wrap { background: var(--cream); }
.form-control-mc {
  width: 100%;
  border: 1.5px solid var(--cream-dk);
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--trans);
  outline: none;
}
[data-theme="dark"] .form-control-mc { background: var(--cream-dk); border-color: rgba(176,137,104,0.3); color: var(--charcoal); }
.form-control-mc:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.form-label-mc {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--brown); margin-bottom: 0.4rem;
  display: block;
}
[data-theme="dark"] .form-label-mc { color: var(--tan); }
.form-group-mc { margin-bottom: 1.2rem; }

.contact-info-card {
  background: linear-gradient(135deg, var(--brown), #3D2820);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: white; height: 100%;
}
.contact-info-item {
  display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(212,175,55,0.15);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; border: 1px solid rgba(212,175,55,0.3);
}
.contact-info-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; color: rgba(255,255,255,0.9); }

.map-placeholder {
  border-radius: var(--radius-sm);
  overflow: hidden; margin-top: 1.5rem;
  background: rgba(255,255,255,0.1);
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,55,0.2);
  color: rgba(255,255,255,0.6); font-size: 0.875rem;
  text-align: center; padding: 1rem;
}

/* ---- Footer ---- */
#footer {
  background: linear-gradient(180deg, #2C1810, #1A0E0A);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--white); font-weight: 700;
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  color: var(--tan); transition: var(--trans);
  font-size: 0.9rem; text-decoration: none;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--brown); }

.footer-title {
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 1.5rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6); font-size: 0.875rem;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.newsletter-input-group { display: flex; gap: 0; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-right: none; color: white;
  padding: 0.75rem 1rem; border-radius: 6px 0 0 6px;
  font-size: 0.875rem; outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn {
  background: var(--gold); color: var(--brown);
  border: none; padding: 0.75rem 1.2rem;
  border-radius: 0 6px 6px 0; cursor: pointer;
  font-weight: 600; font-size: 0.85rem;
  transition: var(--trans);
}
.newsletter-btn:hover { background: var(--tan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0; margin-top: 3rem;
  text-align: center; font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Floating Buttons ---- */
.whatsapp-float {
  position: fixed; bottom: 5rem; right: 1.5rem;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999; transition: var(--trans); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

.back-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--brown); color: var(--gold);
  border: none; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 998; transition: var(--trans);
  opacity: 0; visibility: hidden;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold); color: var(--brown); transform: translateY(-3px); }

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- Search ---- */
.search-bar {
  max-width: 420px;
  position: relative;
}
.search-bar input {
  width: 100%;
  border: 1.5px solid var(--cream-dk);
  border-radius: 40px;
  padding: 0.7rem 3rem 0.7rem 1.2rem;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: var(--trans);
}
.search-bar input:focus { border-color: var(--gold); }
.search-bar button {
  position: absolute; right: 0.8rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--tan); cursor: pointer; font-size: 1rem;
}

/* ---- Skeleton loader ---- */
.skeleton {
  background: linear-gradient(90deg, var(--cream-dk) 25%, rgba(255,255,255,0.5) 50%, var(--cream-dk) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes skeletonShimmer {
  from { background-position: 200% 0 }
  to { background-position: -200% 0 }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }
  .hero-stats { display: none; }
  .product-filter-btns { justify-content: center; }
  .contact-info-card { margin-top: 2rem; }
  #navbar { top: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Alert messages ---- */
.alert-mc {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.alert-success { background: #D4EDDA; color: #155724; border-left: 4px solid #28a745; }
.alert-error { background: #F8D7DA; color: #721C24; border-left: 4px solid #dc3545; }

/* ===== ORDER NOW BUTTON ===== */
.btn-order-now {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 600;
  background: var(--dark-brown); color: white;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.btn-order-now:hover { background: var(--leather-tan); transform: translateY(-1px); }
.btn-order-now i { font-size: 0.75rem; }

/* ===== ORDER MODAL ===== */
.order-modal-content {
  border: none; border-radius: 16px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}
.order-modal-header {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #2d1810 100%);
  padding: 1.75rem 2rem; display: flex; justify-content: space-between; align-items: flex-start;
}
.order-modal-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.order-modal-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: white; margin: 0; line-height: 1.3;
}
.order-modal-price {
  font-size: 1rem; color: rgba(255,255,255,0.75); margin-top: 4px; font-weight: 500;
}
.order-modal-close {
  background: rgba(255,255,255,0.12); border: none; color: white;
  width: 36px; height: 36px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s; flex-shrink: 0; margin-top: 2px;
}
.order-modal-close:hover { background: rgba(255,255,255,0.25); }

.order-label { font-size: 0.85rem; font-weight: 600; color: var(--dark-brown); margin-bottom: 5px; }
[data-theme="dark"] .order-label { color: #d4c5b0; }
.order-input {
  border: 1.5px solid #e0d8d0; border-radius: 8px; font-size: 0.9rem;
  padding: 0.6rem 0.85rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.order-input:focus {
  border-color: var(--leather-tan); box-shadow: 0 0 0 3px rgba(176,137,104,0.15);
  outline: none;
}
[data-theme="dark"] .order-input { background: #2a2a2a; border-color: #444; color: #eee; }
[data-theme="dark"] .order-input:focus { border-color: var(--leather-tan); }

.qty-control {
  display: flex; align-items: center; border: 1.5px solid #e0d8d0; border-radius: 8px; overflow: hidden;
}
.qty-btn {
  width: 38px; height: 40px; background: #f5f0eb; border: none;
  color: var(--dark-brown); font-size: 0.8rem; cursor: pointer;
  transition: background 0.15s; flex-shrink: 0;
}
.qty-btn:hover { background: var(--dark-brown); color: white; }
.qty-input {
  flex: 1; border: none; text-align: center; font-size: 0.95rem;
  font-weight: 600; color: var(--dark-brown); background: white;
  min-width: 0; outline: none; padding: 0;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
[data-theme="dark"] .qty-control { border-color: #444; }
[data-theme="dark"] .qty-btn { background: #333; color: #ccc; }
[data-theme="dark"] .qty-input { background: #2a2a2a; color: #eee; }

.order-error-msg {
  background: #fff0f0; border: 1px solid #ffcccc; color: #c0392b;
  border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.88rem;
  margin-top: 0.75rem; display: flex; align-items: center; gap: 8px;
}
.order-modal-footer {
  display: flex; justify-content: flex-end; gap: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.07); padding-top: 1rem;
}
[data-theme="dark"] .order-modal-footer { border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .order-modal-content { background: #1e1e1e; }

.order-success-box {
  text-align: center; padding: 2.5rem 1rem;
}
.order-success-icon {
  font-size: 3.5rem; color: #27ae60; margin-bottom: 1rem;
}
.order-success-box h5 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--dark-brown); margin-bottom: 0.5rem;
}
[data-theme="dark"] .order-success-box h5 { color: var(--gold); }
.order-success-box p { color: #555; font-size: 0.95rem; }
[data-theme="dark"] .order-success-box p { color: #aaa; }
