/* ============================================
   Mukan Laxmi Furniture — Main Stylesheet
   Color Palette: Wood tones, Beige, Dark Brown
   ============================================ */

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

/* ── CSS Variables ── */
:root {
  --brown-dark: #2C1810;
  --brown-mid: #5C3317;
  --brown-warm: #8B4513;
  --wood-amber: #C87941;
  --wood-light: #D4A96A;
  --beige-dark: #C9B89A;
  --beige-mid: #E8D5B7;
  --beige-light: #F5ECD7;
  --cream: #FBF7F0;
  --white: #FFFFFF;
  --text-dark: #1A0F0A;
  --text-mid: #4A3728;
  --text-light: #7A6355;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, .10);
  --shadow-md: 0 8px 24px rgba(44, 24, 16, .14);
  --shadow-lg: 0 20px 48px rgba(44, 24, 16, .18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wood-amber);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brown-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brown-dark);
  color: var(--brown-dark);
}

.btn-outline:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .28);
  transform: translateY(-2px);
}

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

/* ── Section Spacing ── */
section {
  padding: 80px 0;
}

/* ─────────────────────────────────────
   HEADER / NAVIGATION
───────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 247, 240, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 121, 65, .15);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--brown-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-light);
  font-size: 1.3rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-dark);
  font-weight: 700;
}

.logo-text span {
  color: var(--wood-amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wood-amber);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: .5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: .4rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.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 SECTION
───────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(44, 24, 16, .88) 0%, rgba(92, 51, 23, .75) 60%, rgba(200, 121, 65, .4) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200, 121, 65, .2);
  border: 1px solid rgba(200, 121, 65, .4);
  color: var(--wood-light);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  color: var(--wood-light);
  font-style: italic;
}

.hero-desc {
  color: rgba(255, 255, 255, .78);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .1rem;
}

/* ─────────────────────────────────────
   CATEGORIES SECTION
───────────────────────────────────── */
.categories {
  background: var(--white);
}

.categories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-header .section-subtitle {
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.category-card {
  background: var(--beige-light);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--wood-amber), var(--brown-mid));
  opacity: 0;
  transition: opacity var(--transition);
}

.category-card:hover {
  border-color: var(--wood-amber);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover .cat-icon,
.category-card:hover .cat-name {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cat-icon {
  font-size: 2.8rem;
  margin-bottom: .75rem;
  display: block;
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

.cat-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brown-dark);
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

.cat-count {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .2rem;
  position: relative;
  z-index: 1;
}

.category-card:hover .cat-count {
  color: rgba(255, 255, 255, .75);
}

/* ─────────────────────────────────────
   PRODUCTS / FEATURED SECTION
───────────────────────────────────── */
.featured {
  background: var(--cream);
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--beige-light);
  cursor: pointer;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--wood-amber);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
}

.product-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-view-overlay {
  opacity: 1;
}

.btn-view-img {
  background: var(--white);
  color: var(--brown-dark);
  padding: .6rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}

.btn-view-img:hover {
  background: var(--wood-amber);
  color: var(--white);
}

.img-count-badge {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: rgba(0, 0, 0, .55);
  color: var(--white);
  font-size: .75rem;
  padding: .2rem .6rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.product-body {
  padding: 1.25rem;
}

.product-category {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--wood-amber);
  margin-bottom: .3rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: .4rem;
  font-weight: 600;
}

.product-desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: .9rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-price span {
  font-size: .85rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
  text-decoration: line-through;
  margin-left: .4rem;
}

.product-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  justify-content: center;
  padding: .65rem 1rem;
  font-size: .85rem;
}

/* ─────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────── */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-exp-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--brown-dark);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-exp-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wood-light);
  display: block;
}

.about-exp-badge .label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.3;
}

.about-content .section-subtitle {
  margin-bottom: 1.5rem;
}

.about-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--beige-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: .15rem;
  font-family: var(--font-display);
}

.feature-text p {
  font-size: .87rem;
  color: var(--text-light);
}

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testimonials {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(200, 121, 65, .08);
  line-height: 1;
  pointer-events: none;
}

.testimonials .section-label {
  color: var(--wood-light);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header .section-subtitle {
  color: rgba(255, 255, 255, .6);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
}

.stars {
  display: flex;
  gap: .15rem;
  margin-bottom: 1rem;
}

.star {
  color: var(--wood-amber);
  font-size: 1rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wood-amber);
}

.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: .9rem;
}

.author-city {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, .7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
}

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--wood-amber);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: .65rem;
}

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-col ul li a:hover {
  color: var(--wood-light);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
}

.contact-info li i {
  color: var(--wood-amber);
  margin-top: .1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .38);
}

.footer-bottom a {
  color: var(--wood-amber);
}

/* ─────────────────────────────────────
   FLOATING BUTTONS
───────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + .6rem);
  background: var(--brown-dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-btn:hover::before {
  opacity: 1;
}

.float-wa {
  background: #25D366;
}

.float-call {
  background: var(--brown-mid);
}

/* ─────────────────────────────────────
   LIGHTBOX / MODAL
───────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 1rem;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .3);
}

.lightbox-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #111;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.lb-nav:hover {
  background: rgba(255, 255, 255, .3);
}

.lb-prev {
  left: .75rem;
}

.lb-next {
  right: .75rem;
}

.lightbox-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.lightbox-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.2rem;
}

.lightbox-counter {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
}

.lightbox-thumbnails {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  overflow-x: auto;
}

.lb-thumb {
  width: 60px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: .5;
}

.lb-thumb.active {
  border-color: var(--wood-amber);
  opacity: 1;
}

.lb-thumb:hover {
  opacity: .8;
}

.lightbox-wa {
  margin-top: 1rem;
}

/* ─────────────────────────────────────
   PAGE HERO (Products / Contact)
───────────────────────────────────── */
.page-hero {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(44, 24, 16, .92) 0%, rgba(92, 51, 23, .8) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.page-hero-content {
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: .75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ─────────────────────────────────────
   PRODUCTS PAGE — Filter Bar
───────────────────────────────────── */
.products-section {
  background: var(--cream);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  background: var(--white);
  color: var(--text-mid);
  border: 2px solid var(--beige-dark);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}

/* ─────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────── */
.contact-section {
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--brown-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  margin-bottom: .5rem;
  color: var(--white);
}

.contact-info-card p {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 121, 65, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .15rem;
}

.info-value {
  color: var(--white);
  font-size: .95rem;
}

.info-value a {
  color: var(--wood-light);
}

.info-value a:hover {
  color: var(--white);
}

.contact-social {
  margin-top: 2rem;
}

.contact-social p {
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  margin-bottom: .75rem;
}

.contact-social .social-links {
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  color: var(--brown-dark);
  margin-bottom: .4rem;
}

.contact-form-wrap>p {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: .45rem;
}

.form-label span {
  color: var(--wood-amber);
}

.form-control {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--wood-amber);
  box-shadow: 0 0 0 4px rgba(200, 121, 65, .12);
  background: var(--white);
}

.form-control.error {
  border-color: #e74c3c;
}

.form-control::placeholder {
  color: var(--beige-dark);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-error-msg {
  font-size: .8rem;
  color: #e74c3c;
  margin-top: .3rem;
  display: none;
}

.form-error-msg.show {
  display: block;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ─────────────────────────────────────
   WHATSAPP CTA BANNER
───────────────────────────────────── */
.wa-cta-section {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 60px 0;
}

.wa-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.wa-cta-inner h2 {
  color: var(--white);
  font-family: var(--font-display);
}

.wa-cta-inner p {
  color: rgba(255, 255, 255, .82);
  margin-top: .4rem;
}

.btn-wa-big {
  background: var(--white);
  color: #128C7E;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-wrap {
    max-width: 500px;
  }

  .about-exp-badge {
    left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-cta,
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 5%;
    box-shadow: var(--shadow-md);
    gap: 1.25rem;
    border-bottom: 2px solid var(--beige-dark);
  }

  .nav-links.open .nav-cta {
    display: flex;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .about-img-accent {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lb-nav {
    display: none;
  }

  .floating-buttons {
    bottom: 1.25rem;
    right: 1rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .wa-cta-inner {
    text-align: center;
    justify-content: center;
  }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp .6s ease both;
}

.fade-in-2 {
  animation: fadeInUp .6s .15s ease both;
}

.fade-in-3 {
  animation: fadeInUp .6s .3s ease both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}