/* ==============================
   Urbane Home & Garden — Style
   ============================== */

/* Fonts */
@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;700&display=swap');

/* ===== Variables ===== */
:root {
  --primary: #1a1a2e;
  --primary-light: #2d2d4e;
  --accent: #2d6a4f;
  --accent-light: #40916c;
  --accent-lighter: #95d5b2;
  --whatsapp: #25D366;
  --white: #ffffff;
  --bg-muted: rgba(26,26,46,0.02);
  --text-muted: rgba(26,26,46,0.5);
  --text-secondary: rgba(26,26,46,0.6);
  --border-light: rgba(26,26,46,0.1);
  --border-hover: rgba(45,106,79,0.3);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* ===== Container ===== */
.container { max-width: 100%; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
@media (min-width: 1440px) { .container { padding: 0 3rem; } }

/* ===== Typography ===== */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.7; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Font sizes */
.text-2xs { font-size: 0.625rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

@media (min-width: 640px) {
  .sm\:text-xs { font-size: 0.75rem; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
  .sm\:text-3xl { font-size: 1.875rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius-full); border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white); cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 4px 20px rgba(45,106,79,0.3);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-hover);
  color: var(--accent); background: transparent; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(45,106,79,0.05);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.75rem; }

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: rgba(26,26,46,0.03);
  color: var(--primary);
  outline: none;
  transition: all 0.3s ease;
}
.input-field::placeholder { color: rgba(26,26,46,0.3); }
.input-field:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

/* ===== Section ===== */
.section { padding: 4rem 0; }
.section-muted { padding: 4rem 0; background: var(--bg-muted); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif); font-size: 1.875rem; color: var(--primary);
}
@media (min-width: 640px) { .section { padding: 5rem 0; } .section-muted { padding: 5rem 0; } }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
  animation: navEnter 0.6s ease-out;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .navbar-glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; max-width: 1280px; margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .navbar-inner { height: 4.5rem; padding: 0 1.5rem; } }
@media (min-width: 1024px) { .navbar-inner { padding: 0 2rem; } }
.navbar-brand { display: flex; align-items: center; }
.nav-logo { height: 2.5rem; width: auto; display: block; }
@media (min-width: 640px) { .nav-logo { height: 2.75rem; } }

.nav-links { display: none; }
@media (min-width: 1024px) { .nav-links { display: flex; align-items: center; gap: 0.25rem; } }
.nav-link {
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text-secondary); transition: all 0.3s ease;
}
.nav-link:hover { color: var(--primary); background: rgba(26,26,46,0.05); }
.nav-link.active { color: var(--accent); font-weight: 500; }

/* ===== Mega Menu Dropdown ===== */
.nav-dropdown { position: static; }
@media (min-width: 1024px) { .nav-dropdown { position: relative; } }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; }
.dropdown-toggle svg { width: 0.75rem; height: 0.75rem; transition: transform 0.2s; }
.nav-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14); padding: 1rem 1.25rem;
  opacity: 0; visibility: hidden;
  transition: all 0.2s ease; z-index: 100;
  width: 92vw; max-width: 640px; min-width: 0;
}
@media (min-width: 640px) { .dropdown-menu { width: 80vw; } }
@media (min-width: 900px) { .dropdown-menu { width: auto; min-width: 560px; max-width: 600px; } }
.dropdown-menu-inner { display: flex; flex-direction: column; gap: 0.6rem; }
.mega-section { display: flex; flex-direction: column; gap: 0.35rem; }
.mega-section + .mega-section { padding-top: 0.5rem; border-top: 1px solid rgba(26,26,46,0.06); }
.mega-heading {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); font-weight: 600;
}
.mega-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
@media (min-width: 500px) { .mega-row { grid-template-columns: repeat(3, 1fr); } }
.mega-row a {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.45rem; font-size: 0.72rem;
  color: var(--text-secondary); border-radius: 6px;
  transition: all 0.15s ease; white-space: nowrap;
}
.mega-row a .mega-icon {
  width: 0.9rem; height: 0.9rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; background: rgba(45,106,79,0.08);
  color: var(--accent); transition: all 0.15s ease;
}
.mega-row a:hover { background: rgba(45,106,79,0.06); color: var(--accent); }
.mega-row a:hover .mega-icon { background: var(--accent); color: white; }

/* Drawer submenu */
.drawer-dropdown summary {
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; border-radius: var(--radius-md);
}
.drawer-dropdown summary::-webkit-details-marker { display: none; }
.drawer-dropdown summary::after {
  content: '+'; font-size: 1.125rem; color: var(--text-muted);
  transition: transform 0.2s; margin-right: 1rem;
}
.drawer-dropdown[open] summary::after { content: '−'; }
.drawer-submenu { padding-left: 1rem; }
.drawer-sublink {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: var(--radius-md);
  font-size: 0.8rem; color: var(--text-muted); transition: all 0.2s ease;
}
.drawer-section-label {
  display: block; padding: 0.25rem 1rem 0.1rem;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); font-weight: 600;
}
.drawer-sublink::before {
  content: ''; width: 5px; height: 5px; border-radius: var(--radius-full);
  background: var(--accent-lighter); flex-shrink: 0;
  transition: all 0.2s ease;
}
.drawer-sublink:hover { color: var(--primary); background: rgba(26,26,46,0.05); }
.drawer-sublink:hover::before { background: var(--accent); width: 6px; height: 6px; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.8); border: none;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: all 0.2s ease;
}
.nav-toggle:hover { box-shadow: var(--shadow-md); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile Drawer */
.nav-drawer {
  display: none; overflow: hidden;
  border-top: 1px solid var(--border-light);
}
.nav-drawer.open { display: block; }
.nav-drawer-inner {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 1rem 1.5rem;
}
.drawer-link {
  display: block; padding: 0.75rem 1rem; border-radius: var(--radius-md);
  font-size: 0.875rem; color: var(--text-secondary); transition: all 0.3s ease;
}
.drawer-link:hover { color: var(--primary); background: rgba(26,26,46,0.05); }
.drawer-link.active { background: rgba(45,106,79,0.1); color: var(--accent); font-weight: 500; }

/* ===== Grid / Layout ===== */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-16 { gap: 4rem; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:gap-6 { gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:gap-16 { gap: 4rem; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.gap-1 { gap: 0.25rem; }
.gap-1\5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ===== Sizing ===== */
.w-full { width: 100%; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }
.aspect-\[2\/1\] { aspect-ratio: 2 / 1; }

/* ===== Spacing ===== */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pl-4 { padding-left: 1rem; }

@media (min-width: 640px) {
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:mb-16 { margin-bottom: 4rem; }
}
@media (min-width: 1024px) {
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:w-56 { width: 14rem; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:sticky { position: sticky; }
  .lg\:top-28 { top: 7rem; }
}

/* ===== Borders / Backgrounds ===== */
.rounded-full { border-radius: var(--radius-full); }
.rounded-xl { border-radius: var(--radius-md); }
.rounded-2xl { border-radius: var(--radius-lg); }
.rounded-3xl { border-radius: var(--radius-xl); }
.border { border: 1px solid var(--border-light); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.bg-white { background: var(--white); }
.bg-muted { background: var(--bg-muted); }
.bg-accent { background: var(--accent); }
.bg-accent\/10 { background: rgba(45,106,79,0.1); }
.bg-black\/50 { background: rgba(0,0,0,0.5); }
.bg-black\/60 { background: rgba(0,0,0,0.6); }
.bg-white\/80 { background: rgba(255,255,255,0.8); }
.bg-white\/90 { background: rgba(255,255,255,0.9); }
.bg-\[\#25D366\] { background: #25D366; }

/* ===== Shadows ===== */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-2xl { box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

/* ===== Overflow / Object ===== */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.object-cover { object-fit: cover; }

/* ===== Position ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.right-4 { right: 1rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.left-1\/2 { left: 50%; }
.top-1\/2 { top: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[70\] { z-index: 70; }
.z-\[80\] { z-index: 80; }
@media (min-width: 640px) {
  .sm\:right-6 { right: 1.5rem; }
  .sm\:bottom-6 { bottom: 1.5rem; }
}

/* ===== Glass ===== */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.glass-strong {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ===== Cards ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.5s ease;
}
.card:hover {
  border-color: var(--border-hover); box-shadow: var(--shadow-md);
}

/* ===== Product Card ===== */
.product-card { position: relative; overflow: hidden; }
.product-card .card-image {
  aspect-ratio: 4/3; overflow: hidden;
}
.product-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .card-image img { transform: scale(1.05); }
.product-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, transparent);
  opacity: 0; transition: opacity 0.5s ease;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1.5rem;
}
.product-card:hover .card-overlay { opacity: 1; }
.product-card .quick-view-btn {
  transform: translateY(2rem); opacity: 0;
  transition: all 0.5s ease;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  color: var(--primary); font-size: 0.75rem; padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full); border: none; text-transform: uppercase;
  letter-spacing: 0.05em; font-weight: 500; cursor: pointer; box-shadow: var(--shadow-md);
}
.product-card:hover .quick-view-btn { transform: translateY(0); opacity: 1; }
.product-card .card-body { padding: 1rem; }
@media (min-width: 640px) { .product-card .card-body { padding: 1.25rem; } }

/* ===== Category Sidebar ===== */
.sidebar-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .sidebar-card { padding: 1.5rem; } }
.sidebar-title {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 0.75rem; font-weight: 600;
}
.sidebar-btn {
  display: block; width: 100%; text-align: left;
  padding: 0.625rem 1rem; border-radius: var(--radius-md);
  font-size: 0.875rem; border: none; background: transparent;
  color: var(--text-muted); cursor: pointer; transition: all 0.3s ease;
}
.sidebar-btn:hover { color: var(--primary); background: rgba(26,26,46,0.05); }
.sidebar-btn.active { background: var(--accent); color: var(--white); }
.sidebar-section-header {
  padding: 0.5rem 1rem 0.25rem; font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); font-weight: 600; pointer-events: none;
}

/* Sticky sidebar with independent scroll */
.sidebar-card.sticky {
  position: sticky; top: 7rem;
  max-height: calc(100vh - 10rem);
  overflow-y: auto;
}
.sidebar-card.sticky::-webkit-scrollbar { width: 4px; }
.sidebar-card.sticky::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

/* ===== Category Submenu Grid ===== */
.cat-submenu-grid { padding: 0 0 1rem; }
.cat-submenu-grid .section-label { margin-bottom: 1.5rem; text-align: center; }
.cat-submenu-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem 0.5rem; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid var(--border-light);
  cursor: pointer; transition: all 0.25s ease;
  text-align: center;
}
.cat-submenu-btn:hover {
  border-color: var(--accent-lighter);
  box-shadow: 0 4px 12px rgba(45,106,79,0.1);
  transform: translateY(-2px);
}
.cat-submenu-icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm);
  background: rgba(45,106,79,0.08); display: flex;
  align-items: center; justify-content: center;
}
.cat-submenu-icon svg { width: 1.25rem; height: 1.25rem; color: var(--accent); }
.cat-submenu-btn span { font-size: 0.75rem; color: var(--primary); font-weight: 500; line-height: 1.3; }

/* ===== Modal / Overlay ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 70;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.open {
  opacity: 1; visibility: visible;
}
.modal-overlay .modal-content {
  transform: scale(0.95); opacity: 0; transition: all 0.3s ease;
}
.modal-overlay.open .modal-content {
  transform: scale(1); opacity: 1;
}
@media (max-width: 767px) { .modal-overlay { padding: 0; align-items: flex-end; } }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.modal-content {
  position: relative; background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl); max-width: 48rem; width: 100%;
  max-height: 90vh; overflow-y: auto;
}
@media (max-width: 767px) {
  .modal-content {
    max-width: 100%; max-height: 92vh; border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: auto;
  }
}
.modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 15;
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.9); border: none; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.2s;
  color: var(--primary);
}
.modal-close:hover { background: var(--white); transform: scale(1.05); }

/* ===== Quick View Modal ===== */
.qv-grid {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .qv-grid { grid-template-columns: 1fr 1fr; } }
.qv-gallery {
  position: relative; background: var(--bg-muted); overflow: hidden;
  min-height: 300px;
}
@media (min-width: 768px) { .qv-gallery { min-height: 100%; } }
.qv-gallery-img {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease;
}
.qv-gallery-img.active { opacity: 1; z-index: 1; }
.qv-gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.qv-gallery-nav {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.375rem; z-index: 2;
}
.qv-gallery-nav button {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.qv-gallery-nav button.active { background: var(--white); width: 1.25rem; border-radius: 4px; }
.qv-gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-size: 1.25rem; line-height: 1;
}
.qv-gallery-btn:hover { background: rgba(255,255,255,0.3); }
.qv-gallery-btn.prev { left: 0.5rem; }
.qv-gallery-btn.next { right: 0.5rem; }
.qv-gallery-count {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  background: rgba(0,0,0,0.5); color: var(--white); font-size: 0.625rem;
  padding: 0.25rem 0.625rem; border-radius: var(--radius-full);
  font-weight: 500; letter-spacing: 0.05em;
}
@media (max-width: 767px) { .qv-gallery-btn { display: none; } }

.qv-details {
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  overflow-y: auto;
}
@media (min-width: 768px) { .qv-details { padding: 2rem; } }
.qv-details .qv-badge {
  display: inline-block; font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.375rem 0.75rem; border-radius: var(--radius-full);
  background: rgba(45,106,79,0.1); color: var(--accent); font-weight: 500;
  align-self: flex-start;
}
.qv-details h2 {
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--primary);
  line-height: 1.3;
}
@media (min-width: 768px) { .qv-details h2 { font-size: 1.5rem; } }
.qv-details .qv-desc {
  font-size: 0.8125rem; color: var(--text-muted); line-height: 1.7;
}
.qv-details .qv-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.5rem;
}
.qv-details .qv-features li {
  font-size: 0.8125rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.5rem;
}
.qv-details .qv-features li svg {
  width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0;
}
.qv-details .qv-price {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--accent);
}
@media (min-width: 768px) { .qv-details .qv-price { font-size: 1.75rem; } }
.qv-details .qv-actions {
  display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto;
}
@media (min-width: 640px) { .qv-details .qv-actions { flex-direction: row; } }
.qv-details .qv-actions a {
  justify-content: center; font-size: 0.8125rem; padding: 0.75rem 1.25rem;
  flex: 1; text-align: center;
}

/* ===== Popup ===== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.popup-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* ===== Social Sidebar ===== */
.social-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .social-sidebar {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    position: fixed; left: 3rem; top: 50%; transform: translateY(-50%); z-index: 40;
  }
}
.social-divider {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, transparent, rgba(45,106,79,0.3), transparent);
}
.social-link {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.social-link:hover { color: var(--accent); border-color: var(--accent); background: rgba(45,106,79,0.08); }

/* ===== Floating Actions ===== */
.floating-actions {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
@media (min-width: 640px) { .floating-actions { right: 1.5rem; bottom: 1.5rem; } }
.whatsapp-btn {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-full);
  background: #25D366; border: none; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .whatsapp-btn { width: 2.75rem; height: 2.75rem; } }
.whatsapp-btn:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.whatsapp-btn svg { width: 1.25rem; height: 1.25rem; color: var(--white); }
@media (min-width: 640px) { .whatsapp-btn svg { width: 1.375rem; height: 1.375rem; } }

.back-top-btn {
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius-full);
  background: var(--white); border: 1px solid var(--border-light);
  display: none; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-md); color: var(--text-muted);
  transition: all 0.3s ease;
}
.back-top-btn.visible { display: flex; }
.back-top-btn:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-lg); }

/* ===== Footer ===== */
.footer {
  background: var(--primary); color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer h3 { color: var(--white); font-family: var(--font-serif); margin-bottom: 1rem; }
.footer p, .footer a { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer a:hover { color: var(--accent-lighter); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.3s;
}
.footer-social a:hover { background: var(--accent-lighter); color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem; padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; font-size: 0.75rem;
}

.footer-newsletter { display: flex; gap: 0.5rem; }
.footer-newsletter input {
  flex: 1; padding: 0.75rem 1rem; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
  color: var(--white); font-size: 0.875rem; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { border-color: var(--accent-lighter); }

/* ===== Category Section (Homepage) ===== */
.cat-section { padding: 4rem 0; }
.cat-section:nth-child(even) { background: var(--bg-muted); }
.cat-section:nth-child(odd) { background: var(--white); }
.cat-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .cat-grid.reverse .cat-image { order: 2; }
  .cat-grid.reverse .cat-content { order: 1; }
}
.cat-image {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) { .cat-image { aspect-ratio: auto; height: 400px; } }
.cat-image img { width: 100%; height: 100%; object-fit: cover; }
.cat-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 0.75rem;
}
.cat-title {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--primary);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .cat-title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .cat-title { font-size: 2.25rem; } }
.cat-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
@media (min-width: 640px) { .cat-desc { font-size: 1rem; } }

/* ===== Stats ===== */
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-number { font-family: var(--font-serif); font-size: 1.5rem; color: var(--accent); }
@media (min-width: 640px) { .stat-number { font-size: 1.875rem; } }
.stat-label { font-size: 0.75rem; color: rgba(26,26,46,0.4); }

/* ===== Works / Testimonials / Blog Grids ===== */
.work-grid, .testimonial-grid, .blog-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 640px) {
  .work-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .work-grid, .testimonial-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; background: none; border: none;
  font-size: 1rem; font-weight: 500; color: var(--primary);
  cursor: pointer; text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-answer {
  overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.faq-answer.open { max-height: 500px; padding: 0 0 1.25rem; }
.faq-answer p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.faq-chevron { transition: transform 0.3s ease; width: 1.25rem; height: 1.25rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ===== Blog Detail ===== */
.blog-detail-header {
  padding: 8rem 0 3rem; text-align: center;
  background: var(--bg-muted);
}
.blog-detail-body { max-width: 48rem; margin: 0 auto; padding: 3rem 1rem; }
.blog-detail-body p { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.blog-detail-body h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--primary); margin-top: 2rem; margin-bottom: 1rem; }
.blog-detail-body ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.blog-detail-body li { list-style: disc; margin-bottom: 0.5rem; font-size: 1rem; color: var(--text-secondary); }
.blog-detail-body img { border-radius: var(--radius-lg); margin: 2rem 0; }

/* ===== Made to Order ===== */
.mto-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 1024px) { .mto-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Contact ===== */
.contact-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Page Header ===== */
.page-header-alt {
  padding: 7rem 0 2.5rem;
  position: relative; overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--white) 100%);
}
.page-header-alt::before {
  content: ''; position: absolute;
  top: 4.5rem; left: 50%; transform: translateX(-50%);
  width: 2.5rem; height: 3px;
  background: var(--accent); border-radius: 2px; opacity: 0.5;
}
.page-header-alt-tag {
  display: inline-block;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); font-weight: 600; margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(45,106,79,0.2); border-radius: var(--radius-full);
}
.page-header-alt h1 {
  font-family: var(--font-serif); font-size: 2.25rem;
  color: var(--primary); line-height: 1.15; margin-bottom: 0.5rem;
}
.page-header-alt p {
  font-size: 0.875rem; color: var(--text-muted);
  max-width: 36rem; margin: 0 auto 1rem; line-height: 1.7;
}
.page-header-alt .breadcrumb {
  justify-content: center; padding: 0.5rem 0 0;
}
@media (min-width: 640px) {
  .page-header-alt { padding: 8rem 0 3rem; }
  .page-header-alt h1 { font-size: 3rem; }
  .page-header-alt p { font-size: 0.9375rem; }
}
@media (min-width: 1024px) {
  .page-header-alt h1 { font-size: 3.5rem; }
}

/* ===== Instagram Grid ===== */
.insta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .insta-grid { gap: 0.75rem; } }

/* ===== Newsletter Card ===== */
.newsletter-card {
  background: var(--bg-muted); border-radius: var(--radius-xl);
  padding: 1.5rem;
}
@media (min-width: 640px) { .newsletter-card { padding: 2rem; } }
@media (min-width: 1024px) { .newsletter-card { padding: 2.5rem; } }

/* ===== Stars ===== */
.stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.stars svg { width: 1rem; height: 1rem; color: var(--accent); }

/* ===== Hidden / Visible ===== */
.hidden { display: none !important; }
.block { display: block; }
.inline-flex { display: inline-flex; }
@media (max-width: 1023px) { .lg\:hidden { display: none !important; } }
@media (min-width: 1024px) { .hidden\:lg\:flex { display: flex; } }
@media (min-width: 1024px) { .lg\:block { display: block; } }

/* ===== Animations ===== */
@keyframes navEnter {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease-out; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease-out; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== Whitespace ===== */
.whitespace-nowrap { white-space: nowrap; }

/* ===== SVG ===== */
.icon { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 0.75rem; height: 0.75rem; }
.icon-lg { width: 1.25rem; height: 1.25rem; }
.icon-white { color: var(--white); }
.icon-accent { color: var(--accent); }

/* ===== Transition Helpers ===== */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s, background-color 0.3s; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.duration-700 { transition-duration: 0.7s; }
.ease-out { transition-timing-function: ease-out; }

/* ===== Hover ===== */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-accent { color: var(--accent); }

/* ===== Misc ===== */
.no-underline { text-decoration: none; }
.italic { font-style: italic; }
.cursor-pointer { cursor: pointer; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img.rounded-full { border-radius: var(--radius-full); }

/* ===== Category Carousel ===== */
.cat-carousel-wrap { overflow: hidden; }
.cat-carousel { overflow: hidden; border-radius: var(--radius-lg); }
.cat-carousel-track {
  display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); gap: 0;
}
.cat-carousel-slide {
  min-width: 100%; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 640px) { .cat-carousel-slide { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .cat-carousel-slide { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.cat-carousel-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; display: block; cursor: pointer;
}
.cat-carousel-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.7s ease;
}
.cat-carousel-card:hover img { transform: scale(1.08); }
.cat-carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem; transition: background 0.5s;
}
.cat-carousel-card:hover .cat-carousel-overlay {
  background: linear-gradient(to top, rgba(45,106,79,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.cat-carousel-overlay h3 {
  font-family: var(--font-serif); font-size: 1rem; color: var(--white); margin-bottom: 0.2rem;
}
@media (min-width: 640px) { .cat-carousel-overlay h3 { font-size: 1.25rem; } }
.cat-carousel-overlay span {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
}
.cat-carousel-arrows {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.25rem;
}
.cat-carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); color: var(--text); display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: all 0.3s;
}
.cat-carousel-arrow:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.cat-carousel-dots { display: flex; align-items: center; gap: 0.5rem; }
.cat-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--border); cursor: pointer; transition: all 0.3s; padding: 0;
}
.cat-carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ===== Featured Products ===== */
.featured-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 640px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
.featured-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border-light);
  transition: all 0.5s ease;
}
.featured-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.featured-card-image { aspect-ratio: 4/3; overflow: hidden; }
.featured-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.featured-card:hover .featured-card-image img { transform: scale(1.05); }
.featured-card-body { padding: 1.5rem; }
.featured-card-body h3 { font-size: 1rem; font-weight: 500; color: var(--primary); margin-bottom: 0.25rem; }
.featured-card-body p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }
.featured-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--border-light);
}
.featured-card-price { font-family: var(--font-serif); font-size: 1.25rem; color: var(--accent); }

/* ===== Story Split ===== */
.story-split {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 1024px) { .story-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.story-split-image {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) { .story-split-image { aspect-ratio: auto; height: 500px; } }
.story-split-image img { width: 100%; height: 100%; object-fit: cover; }
.story-split-content h2 {
  font-family: var(--font-serif); font-size: 1.875rem; color: var(--primary); margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .story-split-content h2 { font-size: 2.25rem; } }
.story-split-content p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem;
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.5s ease;
}
.value-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon {
  width: 3.5rem; height: 3.5rem; border-radius: var(--radius-full);
  background: rgba(45,106,79,0.1); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.25rem;
}
.value-icon svg { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.value-card h3 {
  font-family: var(--font-serif); font-size: 1.125rem; color: var(--primary); margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-xl); padding: 3rem 2rem; text-align: center;
}
@media (min-width: 640px) { .cta-banner { padding: 4rem 3rem; } }
.cta-banner h2 {
  font-family: var(--font-serif); font-size: 1.875rem; color: var(--white); margin-bottom: 1rem;
}
@media (min-width: 640px) { .cta-banner h2 { font-size: 2.25rem; } }
.cta-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }
.cta-banner .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== Hero Split (text left / image right) ===== */
.hero-split {
  min-height: 85vh; display: flex; align-items: center;
  padding-top: 5rem; overflow: hidden;
  position: relative;
}
.hero-split::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white);
}
.hero-split-inner {
  display: grid; gap: 3rem; align-items: center; position: relative; z-index: 1;
}
@media (min-width: 1024px) { .hero-split-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-split-text { position: relative; z-index: 2; }
.hero-split-text .section-label { color: var(--accent-lighter); }
.hero-split-title {
  font-family: var(--font-serif); font-size: 2.5rem; line-height: 1.15;
  color: var(--primary); margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .hero-split-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-split-title { font-size: 4.5rem; } }
.hero-split-desc {
  font-size: 0.875rem; color: var(--text-muted);
  max-width: 32rem; margin-bottom: 2rem; line-height: 1.7;
}
@media (min-width: 640px) { .hero-split-desc { font-size: 1rem; } }
.hero-split-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-split-actions { flex-direction: row; } }
.hero-split-actions .btn-outline { border-color: var(--border-hover); color: var(--primary); }
.hero-split-actions .btn-outline:hover { border-color: var(--accent); background: rgba(45,106,79,0.05); }
.hero-split-image {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-split-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Hero Split Slider ===== */
.hero-split-slider {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  padding-top: 5rem; overflow: hidden;
}
@media (max-width: 767px) { .hero-split-slider { min-height: 70vh; } }
.hero-split-slider::before {
  content: ''; position: absolute; inset: 0;
  background: var(--white);
}
.hero-split-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; z-index: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateX(30px);
}
.hero-split-slide.active { opacity: 1; z-index: 1; transform: translateX(0); }
.hero-split-slide .hero-split-inner {
  position: relative; z-index: 1;
}
.hero-split-slide .hero-split-text { position: relative; z-index: 2; }
.hero-split-slide .hero-split-text .section-label { color: var(--accent); }
.hero-split-slide .hero-split-title {
  font-family: var(--font-serif); font-size: 2.5rem; line-height: 1.15;
  color: var(--primary); margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .hero-split-slide .hero-split-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-split-slide .hero-split-title { font-size: 4.5rem; } }
.hero-split-slide .hero-split-desc {
  font-size: 0.875rem; color: var(--text-muted);
  max-width: 32rem; margin-bottom: 2rem; line-height: 1.7;
}
@media (min-width: 640px) { .hero-split-slide .hero-split-desc { font-size: 1rem; } }
.hero-split-slide .hero-split-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-split-slide .hero-split-actions { flex-direction: row; } }
.hero-split-slide .hero-split-actions .btn-outline { border-color: var(--border-hover); color: var(--primary); }
.hero-split-slide .hero-split-actions .btn-outline:hover { border-color: var(--accent); background: rgba(45,106,79,0.05); }
.hero-split-slide .hero-split-image {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-split-slide .hero-split-image img { width: 100%; height: 100%; object-fit: cover; }

/* Animated content inside slides */
.hero-split-slide.active .hero-split-text > * {
  opacity: 0; transform: translateY(25px);
  animation: splitSlideText 0.7s ease forwards;
}
.hero-split-slide.active .hero-split-text .section-label { animation-delay: 0.1s; }
.hero-split-slide.active .hero-split-text .hero-split-title { animation-delay: 0.25s; }
.hero-split-slide.active .hero-split-text .hero-split-desc { animation-delay: 0.4s; }
.hero-split-slide.active .hero-split-text .hero-split-actions { animation-delay: 0.55s; }
.hero-split-slide.active .hero-split-image {
  animation: splitSlideImage 0.8s 0.2s ease forwards;
  opacity: 0;
}

@keyframes splitSlideText { to { opacity: 1; transform: translateY(0); } }
@keyframes splitSlideImage { to { opacity: 1; transform: translateX(0); } }
.hero-split-slide .hero-split-image { transform: translateX(30px); }
.hero-split-slide.active .hero-split-image { transform: translateX(0); }

/* Slider nav within hero-split-slider */
.hero-split-slider .slider-nav {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; align-items: center; gap: 0.75rem;
}
.hero-split-slider .slider-dot {
  width: 0.625rem; height: 0.625rem; border-radius: 50%;
  border: 2px solid var(--border-hover); background: transparent;
  cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.hero-split-slider .slider-dot.active {
  background: var(--accent); border-color: var(--accent); width: 1.5rem; border-radius: 6px;
}

/* ===== Areas Grid ===== */
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center;
  max-width: 48rem; margin: 0 auto;
}
.area-tag {
  display: inline-block; padding: 0.5rem 1rem; border-radius: var(--radius-full);
  background: var(--white); border: 1px solid var(--border-light);
  font-size: 0.8125rem; color: var(--text-secondary); font-weight: 450;
  transition: all 0.3s ease; cursor: default;
}
.area-tag:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(45,106,79,0.04);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
  padding: 1rem 0; font-size: 0.75rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); font-weight: 500; }
.breadcrumb .sep { color: var(--border-light); font-size: 0.625rem; }




/* ===== Side Popup ===== */
.popup-slide {
  position: fixed; top: 0; right: 0; z-index: 80;
  height: 100vh; width: 100%; max-width: 24rem;
  display: flex; flex-direction: column;
  background: var(--white); box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transform: translateX(100%); transition: transform 0.4s ease;
}
.popup-slide.open { transform: translateX(0); }
.popup-slide-backdrop {
  position: fixed; inset: 0; z-index: 79;
  background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.popup-slide-backdrop.open { opacity: 1; visibility: visible; }
.popup-slide-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light);
}
.popup-slide-header h3 { font-family: var(--font-serif); font-size: 1.125rem; color: var(--primary); }
.popup-slide-close {
  width: 2rem; height: 2rem; border-radius: var(--radius-full);
  background: var(--bg-muted); border: none; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  color: var(--text-muted); transition: all 0.2s;
}
.popup-slide-close:hover { background: var(--border-light); color: var(--primary); }
.popup-slide-body {
  flex: 1; overflow-y: auto; padding: 1.5rem;
}
.popup-slide-body img { border-radius: var(--radius-lg); margin-bottom: 1.25rem; }

@media (max-width: 480px) {
  .popup-slide { max-width: 100%; }
}



