/* ================================================================
   MASHO INTERIOR — Premium Ethiopian Furniture Brand
   Scandinavian Modern × Ethiopian Craftsmanship
   ================================================================ */

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

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES — Light Mode (default)
---------------------------------------------------------------- */
:root {
  /* Brand palette */
  --accent: #a67b5b;
  --accent-dk: #7d5c3e;
  --accent-lt: #c8a07a;
  --accent-glow: rgba(166, 123, 91, 0.18);

  /* Light mode surfaces */
  --bg: #faf8f5;
  --bg-alt: #f4f0eb;
  --bg-card: #ffffff;
  --bg-cream: #fffdf8;
  --bg-overlay: rgba(250, 248, 245, 0.96);

  /* Light mode text */
  --text: #1e1a16;
  --text-soft: #5e5248;
  --text-muted: #9b8f85;

  /* Borders / shadows */
  --border: #e6dfd6;
  --shadow-sm: 0 2px 14px rgba(30, 20, 10, 0.06);
  --shadow-md: 0 8px 36px rgba(30, 20, 10, 0.10);
  --shadow-lg: 0 20px 60px rgba(30, 20, 10, 0.14);

  /* Navbar */
  --nav-bg: transparent;
  --nav-scrolled: rgba(255, 253, 248, 0.94);
  --nav-text: rgba(255, 255, 255, 0.92);
  --nav-text-dark: #1e1a16;

  /* Sidebar (admin) */
  --sidebar-bg: #140f0b;
  --sidebar-text: rgba(255, 255, 255, 0.6);
  --sidebar-active: rgba(166, 123, 91, 0.18);

  /* Misc */
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --max-w: 1240px;
  --section-v: 108px;
  --card-r: 20px;
  --tr: 0.38s ease;
  --tr-fast: 0.2s ease;
}

/* ----------------------------------------------------------------
   DARK MODE
---------------------------------------------------------------- */
[data-theme="dark"] {
  --bg: #131008;
  --bg-alt: #1c1710;
  --bg-card: #211c14;
  --bg-cream: #171208;
  --bg-overlay: rgba(19, 16, 8, 0.96);

  --text: #f0ebe3;
  --text-soft: #a89f94;
  --text-muted: #6b6258;

  --border: #2e2820;
  --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 36px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.50);

  --nav-scrolled: rgba(19, 16, 8, 0.96);
}

/* ----------------------------------------------------------------
   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(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--tr), color var(--tr);
}

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

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

ul {
  list-style: none;
}

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

/* ----------------------------------------------------------------
   UTILITY
---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.h1,
h1 {
  font-family: var(--font-heading);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.22;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 560px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 60px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: none;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 28px rgba(166, 123, 91, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(166, 123, 91, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166, 123, 91, 0.3);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-d1 {
  transition-delay: 0.10s;
}

.reveal-d2 {
  transition-delay: 0.20s;
}

.reveal-d3 {
  transition-delay: 0.30s;
}

.reveal-d4 {
  transition-delay: 0.40s;
}

.reveal-d5 {
  transition-delay: 0.50s;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: all 0.45s ease;
}

.navbar.scrolled {
  background: var(--nav-scrolled);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--nav-text);
  flex-shrink: 0;
  transition: color var(--tr);
  letter-spacing: 0.5px;
}

.navbar.scrolled .nav-logo {
  color: var(--text);
}

/* Search bar */
.nav-search-wrap {
  flex: 1;
  max-width: 360px;
  position: relative;
  margin: 0 auto;
}

.nav-search {
  width: 100%;
  padding: 9px 18px 9px 40px;
  border-radius: 60px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.84rem;
  outline: none;
  transition: all var(--tr);
}

.navbar.scrolled .nav-search {
  border-color: var(--border);
  background: var(--bg-alt);
  color: var(--text);
}

.nav-search::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.navbar.scrolled .nav-search::placeholder {
  color: var(--text-muted);
}

.nav-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.nav-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  pointer-events: none;
  transition: color var(--tr);
}

.navbar.scrolled .nav-search-icon {
  color: var(--text-muted);
}

/* Search dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: none;
  z-index: 999;
  max-height: 340px;
  overflow-y: auto;
}

.search-dropdown.open {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  transition: background var(--tr-fast);
  cursor: pointer;
}

.search-result-item:hover {
  background: var(--bg-alt);
}

.search-thumb {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}

.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.search-info p {
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
}

.search-no-result {
  padding: 20px 18px;
  font-size: 0.86rem;
  color: var(--text-muted);
  text-align: center;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--nav-text);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color var(--tr);
}

.navbar.scrolled .nav-links a {
  color: var(--text-soft);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--tr);
}

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

.nav-links a:hover {
  color: var(--nav-text);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--accent);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--tr);
  cursor: pointer;
}

.navbar.scrolled .theme-toggle {
  border-color: var(--border);
  background: var(--bg-alt);
  color: var(--text-soft);
}

.theme-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(20deg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all var(--tr);
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(24px);
  z-index: 898;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--tr);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  line-height: 1;
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.08);
  transition: transform 10s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg,
      rgba(255, 248, 235, 0.58) 0%,
      rgba(245, 232, 210, 0.48) 55%,
      rgba(235, 218, 190, 0.42) 100%);
}

[data-theme="dark"] .hero-overlay {
  background: linear-gradient(155deg,
      rgba(20, 14, 6, 0.68) 0%,
      rgba(30, 20, 10, 0.58) 55%,
      rgba(20, 14, 6, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 820px;
  animation: heroReveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(48px);
  }

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  padding: 7px 22px;
  border-radius: 60px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .hero-eyebrow {
  background: rgba(30, 24, 14, 0.7);
  border-color: rgba(166, 123, 91, 0.3);
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

[data-theme="dark"] .hero-h1 {
  color: #f0ebe3;
}

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

.hero-p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto 44px;
}

[data-theme="dark"] .hero-p {
  color: #a89f94;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 20px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: heroReveal 1.3s ease 0.8s both;
}

[data-theme="dark"] .hero-badge {
  background: rgba(30, 24, 14, 0.75);
  border-color: rgba(166, 123, 91, 0.25);
}

.hero-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-badge .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 3px;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 3;
  animation: fadeIn 2s ease 1.8s both;
}

.scroll-cue span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.25;
    transform: scaleY(0.5);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ================================================================
   FEATURED PRODUCTS
================================================================ */
.products-section {
  padding: var(--section-v) 0;
  background: var(--bg-cream);
  transition: background var(--tr);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}

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

/* Product Card */
.product-card {
  background: var(--bg-card);
  border-radius: var(--card-r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
  border: 1px solid var(--border);
}

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

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}

.product-img-wrap img,
.product-img-wrap .product-emoji {
  width: 100%;
  height: 100%;
  transition: transform 0.65s ease;
}

.product-img-wrap img {
  object-fit: cover;
}

.product-img-wrap .product-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-wrap .product-emoji {
  transform: scale(1.08);
}

/* Quick View overlay */
.quick-view-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(166, 123, 91, 0.93);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--bg-card);
  color: var(--accent);
  padding: 5px 13px;
  border-radius: 40px;
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.product-info {
  padding: 22px 24px 26px;
}

.product-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--accent);
}

.product-price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.card-btn {
  padding: 9px 20px;
  border-radius: 60px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: all var(--tr);
  font-family: var(--font-body);
}

.card-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(166, 123, 91, 0.3);
}

/* ================================================================
   QUICK VIEW MODAL
================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 8, 0.65);
  backdrop-filter: blur(6px);
  z-index: 980;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-card);
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-img-side {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-size: 5rem;
  overflow: hidden;
}

.modal-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content-side {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--tr);
}

.modal-close:hover {
  background: var(--accent);
  color: #fff;
}

.modal-box {
  position: relative;
}

.modal-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.modal-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 28px;
}

.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.modal-detail-item {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px 14px;
}

.modal-detail-item .dk {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.modal-detail-item .dv {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

.modal-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.modal-wa:hover {
  background: #1EAF56;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

/* ================================================================
   ABOUT / BRAND STORY
================================================================ */
.about-section {
  padding: var(--section-v) 0;
  background: var(--bg);
  transition: background var(--tr);
}

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

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

.about-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.about-img {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
}

.about-img.main {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.about-img.sm {
  aspect-ratio: 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-img .emoji-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--bg-card);
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.about-floating-card .big {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.about-floating-card .sm {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.about-text {
  max-width: 480px;
}

.about-text .section-sub {
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.av {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 20px;
  transition: background var(--tr);
}

.av .icon {
  font-size: 1.4rem;
  margin-bottom: 9px;
}

.av h4 {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.av p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ================================================================
   CATEGORIES
================================================================ */
.categories-section {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  transition: background var(--tr);
}

.categories-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 22px;
}

.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  min-height: 220px;
  transition: transform var(--tr), box-shadow var(--tr);
  text-decoration: none;
}

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

.cat-card.large {
  grid-column: span 2;
  min-height: 280px;
}

.cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}

.cat-card:hover .cat-bg {
  transform: scale(1.06);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 8, 0.75) 0%, rgba(20, 14, 8, 0.15) 60%, transparent 100%);
}

.cat-info {
  position: relative;
  z-index: 2;
}

.cat-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.cat-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
}

/* Fallback color backgrounds */
.cat-c1 {
  background: linear-gradient(135deg, #c8b4a0 0%, #a8917a 100%);
}

.cat-c2 {
  background: linear-gradient(135deg, #b8a898 0%, #9a8572 100%);
}

.cat-c3 {
  background: linear-gradient(135deg, #c0a888 0%, #9e8868 100%);
}

.cat-c4 {
  background: linear-gradient(135deg, #b4c0b0 0%, #92a888 100%);
}

.cat-c5 {
  background: linear-gradient(135deg, #c8b4a0 0%, #b0948 100%);
}

.cat-c6 {
  background: linear-gradient(135deg, #b8c4cc 0%, #98a8b4 100%);
}

.cat-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 3.5rem;
  opacity: 0.55;
}

/* ================================================================
   WHY MASHO
================================================================ */
.why-section {
  padding: var(--section-v) 0;
  background: var(--bg-cream);
  transition: background var(--tr);
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header .section-sub {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 42px 24px;
  background: var(--bg-card);
  border-radius: var(--card-r);
  border: 1px solid var(--border);
  transition: all var(--tr);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.why-icon {
  width: 68px;
  height: 68px;
  background: var(--accent-glow);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.7rem;
  transition: background var(--tr);
}

.why-card:hover .why-icon {
  background: var(--accent);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   LIFESTYLE SECTION
================================================================ */
.lifestyle-section {
  padding: var(--section-v) 0;
  background: var(--bg);
  transition: background var(--tr);
}

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

.lifestyle-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lm-img {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
  transition: transform var(--tr);
}

.lm-img.tall {
  grid-row: span 2;
}

.lm-img:hover {
  transform: scale(1.02);
}

.lm-img.tall {
  aspect-ratio: 2/3;
}

.lm-img:not(.tall) {
  aspect-ratio: 1;
}

.lm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lm-img .emoji-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.lifestyle-text .section-sub {
  margin-bottom: 22px;
}

.lifestyle-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1.65;
  padding-left: 22px;
  border-left: 3px solid var(--accent-lt);
  margin: 28px 0;
}

.lifestyle-stats {
  display: flex;
  gap: 44px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.ls-item .num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
}

.ls-item .lbl {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ================================================================
   CONTACT / CTA
================================================================ */
.contact-section {
  padding: var(--section-v) 0;
  background: var(--bg-alt);
  transition: background var(--tr);
}

.contact-box {
  background: var(--bg-card);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-info-side {
  background: var(--accent);
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-side .tag {
  color: rgba(255, 255, 255, 0.65);
}

.contact-info-side .section-heading {
  color: #fff;
}

.contact-info-side .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-decoration: none;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background var(--tr);
}

.contact-item:hover .ci-icon {
  background: rgba(255, 255, 255, 0.3);
}

.contact-form-side {
  padding: 64px 52px;
}

.contact-form-side h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fgroup label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.2px;
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  resize: vertical;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  background: var(--bg-card);
}

.fgroup textarea {
  min-height: 110px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.floating-btns {
  position: fixed;
  bottom: 32px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 850;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: all var(--tr);
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.float-phone {
  background: var(--accent);
  color: #fff;
}

.float-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.float-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}

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

.float-btn {
  position: relative;
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: #0e0b07;
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 0 36px;
  transition: background var(--tr);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 36px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.fsocial {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--tr);
  text-decoration: none;
}

.fsocial:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--tr);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-bottom a {
  color: var(--accent-lt);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 960px) {
  :root {
    --section-v: 78px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-floating-card {
    left: 0;
  }

  .lifestyle-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

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

  .cat-card.large {
    grid-column: span 2;
  }

  .modal-box {
    grid-template-columns: 1fr;
  }

  .modal-img-side {
    min-height: 240px;
  }

  .hero-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-search-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

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

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .cat-card.large {
    grid-column: span 1;
  }

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

  .lifestyle-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .lm-img.tall {
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .lm-img:not(.tall) {
    aspect-ratio: 4/3;
  }

  .contact-info-side {
    padding: 40px 28px;
  }

  .contact-form-side {
    padding: 40px 28px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-badge {
    display: none;
  }
}

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

  .lifestyle-mosaic {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav search (shown inside mobile drawer) */
.mobile-search-wrap {
  position: relative;
  width: 80%;
  max-width: 300px;
}

.mobile-search {
  width: 100%;
  padding: 12px 18px 12px 42px;
  border-radius: 60px;
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.mobile-search:focus {
  border-color: var(--accent);
}

.mobile-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}