/* ============================================================
   BOTANICAL CONSERVATORY & GARDEN CENTER
   style.css � Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Colors - Light Mode */
  --bg-primary: #f4f0eb;
  --bg-secondary: #ede8e0;
  --bg-card: #ffffff;
  --bg-card-hover: #f9f6f1;
  --text-primary: #1a1a14;
  --text-secondary: #4a4a3a;
  --text-muted: #7a7a6a;
  --text-inverse: #f4f0eb;
  --accent-green: #2d5a27;
  --accent-green-light: #4a8c42;
  --accent-green-pale: #a8c5a0;
  --accent-gold: #b8960c;
  --accent-gold-light: #d4af37;
  --accent-sage: #7a9a6a;
  --accent-moss: #3d5c30;
  --border-color: rgba(45, 90, 39, 0.15);
  --shadow-soft: 0 4px 30px rgba(45, 90, 39, 0.08);
  --shadow-card: 0 8px 40px rgba(45, 90, 39, 0.12);
  --shadow-hover: 0 20px 60px rgba(45, 90, 39, 0.2);
  --overlay-dark: rgba(10, 20, 8, 0.6);
  --overlay-light: rgba(244, 240, 235, 0.85);
  --nav-bg: rgba(244, 240, 235, 0.92);
  --hero-overlay: linear-gradient(180deg, rgba(10, 20, 8, 0.3) 0%, rgba(10, 20, 8, 0.5) 60%, rgba(10, 20, 8, 0.75) 100%);
  --section-divider: rgba(45, 90, 39, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-xl: 50px;
  --radius-full: 9999px;

  /* Z-index layers */
  --z-base: 1;
  --z-card: 10;
  --z-nav: 100;
  --z-modal: 200;
  --z-cursor: 999;
}

/* Dark Mode */
[data-theme="dark"] {
  --bg-primary: #0e1610;
  --bg-secondary: #141f12;
  --bg-card: #1a2418;
  --bg-card-hover: #1f2d1c;
  --text-primary: #e8e4d8;
  --text-secondary: #b8b4a4;
  --text-muted: #7a7a6a;
  --text-inverse: #0e1610;
  --accent-green: #4a8c42;
  --accent-green-light: #6ab060;
  --accent-green-pale: #3d5c30;
  --accent-gold: #d4af37;
  --accent-gold-light: #e8c84a;
  --accent-sage: #8aaa7a;
  --accent-moss: #4d7040;
  --border-color: rgba(74, 140, 66, 0.2);
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
  --overlay-dark: rgba(5, 10, 4, 0.7);
  --overlay-light: rgba(14, 22, 16, 0.85);
  --nav-bg: rgba(14, 22, 16, 0.95);
  --section-divider: rgba(74, 140, 66, 0.15);
  --glass-bg: rgba(0, 0, 0, 0.2);
  --glass-border: rgba(74, 140, 66, 0.2);
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .nav-menu {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-cta {
  flex-direction: row-reverse;
}

[dir="rtl"] .section-badge {
  flex-direction: row-reverse;
}

[dir="rtl"] .story-grid {
  direction: rtl;
}

[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] .hamburger {
  margin-left: 0;
  margin-right: auto;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  background: none;
}

/* ============================================================
   GLOBAL CONTAINER
   ============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 140, 66, 0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}

.cursor-trail {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 140, 66, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-green-pale);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
body>header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
}

.navbar {
  width: 100%;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid var(--border-color);
}



/* Brand Logo SVG Consistency */
.botanica-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.botanica-logo-svg .logo-leaf-dark {
  fill: var(--accent-green);
}

.botanica-logo-svg .logo-leaf-light {
  fill: var(--accent-green-light);
}

/* Ensure navbar-brand and other logo containers handle SVG correctly */
.brand-icon, .auth-brand-icon, .dash-brand-icon, .auth-topbar-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand .brand-icon svg,
.auth-brand .auth-brand-icon svg,
.dash-brand .dash-brand-icon svg,
.auth-topbar-logo .auth-topbar-logo-icon svg {
  width: 100%;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 101;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
  flex-shrink: 0;
  transition: transform 0.3s var(--transition-bounce);
}

.navbar-brand:hover .brand-icon {
  transform: rotate(15deg) scale(1.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.brand-tagline {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--accent-green-light);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-green);
}

.nav-link .chevron {
  font-size: 0.6rem;
  transition: transform 0.3s;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  min-width: 180px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  z-index: 10;
}

/* Invisible bridge to prevent mouse escaping during transition */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.nav-dropdown a:hover {
  background: var(--bg-secondary);
  color: var(--accent-green);
  padding-left: 1.3rem;
}

/* Nav Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 101;
}

.nav-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--accent-green);
  color: white;
  transform: scale(1.1);
  border-color: transparent;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  z-index: 102;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.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 Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Changed from center */
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 6rem 2rem 2rem; /* Added more top padding for header space */
  overflow-y: auto; /* Enable vertical scrolling */
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent-green);
}

.mobile-sub-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.mobile-sub-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-action-btn {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-action-btn:hover {
  color: var(--accent-green);
}

.mobile-header-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/pexels-lonnyphotography-27947714.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

/* Fog Effect */
.hero-fog {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fog-layer {
  position: absolute;
  width: 200%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,128L60,144C120,160,240,192,360,181.3C480,171,600,117,720,117.3C840,117,960,171,1080,181.3C1200,192,1320,160,1380,144L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'/%3E%3C/svg%3E") repeat-x;
  animation: fogFloat 20s linear infinite;
  bottom: 0;
}

.fog-layer:nth-child(2) {
  animation: fogFloat 28s linear infinite reverse;
  opacity: 0.6;
  bottom: 20px;
}

@keyframes fogFloat {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Light Rays */
.light-rays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ray {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, rgba(255, 255, 220, 0.18) 0%, transparent 70%);
  transform-origin: top center;
  animation: rayPulse 6s ease-in-out infinite;
}

.ray:nth-child(1) {
  left: 20%;
  transform: rotate(-15deg);
  animation-delay: 0s;
}

.ray:nth-child(2) {
  left: 35%;
  transform: rotate(-8deg);
  animation-delay: 1.2s;
  width: 4px;
}

.ray:nth-child(3) {
  left: 50%;
  transform: rotate(0deg);
  animation-delay: 0.5s;
  width: 3px;
}

.ray:nth-child(4) {
  left: 65%;
  transform: rotate(8deg);
  animation-delay: 2s;
}

.ray:nth-child(5) {
  left: 78%;
  transform: rotate(15deg);
  animation-delay: 1.5s;
  width: 4px;
}

@keyframes rayPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.8rem;
  animation: fadeInDown 1s ease 0.3s both;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title em {
  font-style: italic;
  color: #a8f570; /* Bright, saturated green for improved visibility on dark hero background */
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(168, 245, 112, 0.3);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease 0.7s both;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s, transform 0.5s;
}

.btn:hover::before {
  opacity: 1;
  transform: scale(2.5);
}

.btn-primary {
  background: var(--accent-green);
  color: white;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.4);
}

.btn-primary:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 90, 39, 0.5);
}

/* Water ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-outline {
  background: transparent;
  color: var(--accent-green);
  border: 1.5px solid var(--accent-green);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(45, 90, 39, 0.1);
  border-color: var(--accent-green-light);
  color: var(--accent-green-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--text-primary);
  color: var(--text-inverse);
}

.btn-dark:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.2s both;
  cursor: pointer;
}

.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
section {
  padding: var(--space-xl) 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.section-badge::before,
.section-badge::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent-green-pale);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--accent-green);
}

.section-subtitle {
  font-size: 1em;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-section-subtitle {
  font-size: 1em;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.delay-2 {
  transition-delay: 0.2s;
}

.fade-up.delay-3 {
  transition-delay: 0.3s;
}

.fade-up.delay-4 {
  transition-delay: 0.4s;
}

.fade-up.delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   PLANT WORLDS SECTION
   ============================================================ */
.plant-worlds {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.plant-worlds::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 140, 66, 0.06) 0%, transparent 70%);
  pointer-events: none;

}

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.world-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--transition-bounce), box-shadow 0.5s ease;
}

.world-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.world-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.world-card:hover .world-card-img {
  transform: scale(1.1);
}

.world-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  transition: all 0.5s ease;
}

.world-card:hover .world-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(45, 90, 39, 0.7) 100%);
}

.world-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem;
  z-index: 2;
}

.world-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  transform: scale(1);
  transition: transform 0.4s var(--transition-bounce);
}

.world-card:hover .world-icon {
  transform: scale(1.3) rotate(-5deg);
}

.world-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  display: block;
  letter-spacing: 0.02em;
}

.world-count {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}

/* Bloom effect */
.bloom-ring {
  position: absolute;
  inset: -50%;
  border-radius: 50%;
  border: 1px solid rgba(74, 140, 66, 0.4);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease;
  pointer-events: none;
}

.world-card:hover .bloom-ring {
  opacity: 1;
  transform: scale(1);
  animation: bloomPulse 1.5s ease-in-out infinite;
}

@keyframes bloomPulse {

  0%,
  100% {
    border-color: rgba(74, 140, 66, 0.4);
  }

  50% {
    border-color: rgba(74, 140, 66, 0.8);
  }
}

/* World card backgrounds */
.world-tropical .world-card-img {
  background-image: url('../image/tropical.jpg');
}

.world-desert .world-card-img {
  background-image: url('../image/desert.jpg');
}

.world-aquatic .world-card-img {
  background-image: url('../image/water.jpg');
}

.world-rare .world-card-img {
  background-image: url('../image/rare.jpg');
}

/* ============================================================
   STORY SECTION (Parallax)
   ============================================================ */
.story-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* --- Story: container wrapper --- */
.story-visual {
  position: relative;
}

/* --- Mosaic grid: tall left image + right column --- */
.story-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 1rem;
  height: 520px;
}

/* --- Primary tall image --- */
.story-mosaic-primary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-mosaic-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.story-mosaic-primary:hover img {
  transform: scale(1.04);
}

/* 'Est. 1987' pill tag */
.story-year-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(10, 20, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-body);
}

/* --- Right column: small image + stat card --- */
.story-mosaic-secondary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-mosaic-img2 {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 0;
}

.story-mosaic-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.story-mosaic-img2:hover img {
  transform: scale(1.06);
}

/* --- Stat card (green badge) --- */
.story-stat-card {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1rem;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  box-shadow: 0 12px 40px rgba(45, 90, 39, 0.4);
  position: relative;
  overflow: hidden;
}

.story-stat-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.story-stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  display: block;
}

.story-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.story-stat-lbl {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  display: block;
  line-height: 1.5;
}

/* --- Story text section --- */
.story-content {
  padding: 2rem 0;
}

.story-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* --- Value cards grid --- */
.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-green-pale);
}

.value-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(74, 140, 66, 0.15), rgba(74, 140, 66, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(74, 140, 66, 0.2);
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.value-title {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  display: block;
}

.value-desc {
  font-size: 1em;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}

/* ============================================================
   VIRTUAL TOUR SECTION
   ============================================================ */
.virtual-tour {
  background: var(--bg-secondary);
  position: relative;
}

.tour-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow-hover);
}

.tour-preview {
  width: 100%;
  height: 100%;
  background-image: url('../image/pexels-b-o-minh-1883288-31182412.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
}

.tour-wrapper:hover .tour-preview {
  transform: scale(1.02);
}

/* --- Tour: Video Experience --- */
.tour-video-container {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: black;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.tour-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Playing State overrides */
.tour-wrapper.playing .tour-video-container {
  opacity: 1;
  visibility: visible;
}

.tour-wrapper.playing .tour-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tour-wrapper.playing .tour-dots {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  bottom: 1rem;
}

/* Learn Section Video Player */
.learn-video-wrapper,
.learn-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.learn-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.learn-video-container {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.learn-card.playing .learn-video-container {
  opacity: 1;
  visibility: visible;
}

.learn-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.learn-card.playing .learn-video-overlay {
  opacity: 0;
  visibility: hidden;
}

.learn-play-btn {
  background: var(--accent-green);
  color: white;
  border: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--transition-bounce), background 0.3s;
}

.learn-play-btn:hover {
  transform: scale(1.1);
  background: var(--accent-moss);
}


.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.tour-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: playPulse 2.5s ease-in-out infinite;
}

@keyframes playPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.tour-play-btn:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: scale(1.1);
}

.tour-caption {
  text-align: center;
  color: white;
}

.tour-caption h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.tour-caption p {
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
}

/* Tour 360� indicators */
.tour-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.tour-dot.active {
  width: 24px;
  border-radius: 4px;
  background: white;
}

/* ============================================================
   LEARN SECTION
   ============================================================ */
.learn-section {
  background: var(--bg-primary);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.learn-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

.learn-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.learn-card:hover .learn-card-img {
  transform: scale(1.05);
}

.learn-card-body {
  padding: 1.5rem;
}

.learn-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(74, 140, 66, 0.1);
  color: var(--accent-green);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.learn-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.learn-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.learn-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.events-section::before {
  display: none;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-green);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.event-item:hover::before,
.event-item.active::before {
  transform: scaleY(1);
}

.event-item:hover,
.event-item.active {
  border-color: var(--accent-green-pale);
  transform: translateX(5px);
}

.event-date {
  text-align: center;
  flex-shrink: 0;
  min-width: 50px;
}

.event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--accent-green);
  line-height: 1;
}

.event-month {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.event-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.event-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.event-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-featured-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 3%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--accent-green);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-green-pale);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   FLOATING LEAVES
   ============================================================ */
.leaf-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-leaf {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: leafDrift var(--duration, 12s) ease-in-out infinite var(--delay, 0s);
  transform-origin: center;
}

@keyframes leafDrift {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(-5vh) rotate(0deg);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateX(var(--drift, 100px)) translateY(110vh) rotate(360deg);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--accent-green);
  padding-left: 0.3rem;
}

[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 0.3rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Image reveal mask */
.img-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.img-reveal.visible {
  clip-path: inset(0 0% 0 0);
}

/* Loading screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-leaf {
  font-size: 3rem;
  animation: spin 2s linear infinite;
  display: block;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 1rem auto 0;
}

.loading-progress {
  height: 100%;
  background: var(--accent-green);
  animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE � TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 2.5rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hide login and cart from nav-controls on mobile */
  .nav-controls>a {
    display: none;
  }

  .worlds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-img-accent {
    display: none;
  }

  .story-stat-badge {
    right: 1rem;
  }

  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE � MOBILE (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --space-xl: 4rem;
  }

  .navbar {
    padding: 1rem 1.2rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .worlds-grid {
    grid-template-columns: 1fr;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .story-values {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1.2rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .tour-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .tour-caption h3 {
    font-size: 1.3rem;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   HOME 2 � BOTANICAL GARDEN CENTER SHOP PAGE
   home2.html styles � appended to style.css
   ============================================================ */

/* ---- CART BUTTON BADGE ---- */
.h2-cart-btn {
  position: relative;
}

.h2-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-green-light);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: h2BadgePop 0.4s var(--transition-bounce);
}

@keyframes h2BadgePop {
  0% {
    transform: scale(0);
  }

  80% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

/* ---- HERO SPLIT LAYOUT ---- */
.h2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
  padding-top: 10px;
  padding-bottom: 30px;
}

/* Animated BG */
.h2-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.h2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: h2OrbFloat 12s ease-in-out infinite;
}

.h2-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.h2-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  bottom: -80px;
  left: 10%;
  opacity: 0.12;
  animation-delay: 4s;
}

.h2-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--accent-sage) 0%, transparent 70%);
  top: 40%;
  left: -80px;
  opacity: 0.2;
  animation-delay: 2s;
}

@keyframes h2OrbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.h2-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

/* Hero inner layout */
.h2-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 0;
}

/* Fade-in for hero elements */
.h2-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: h2FadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes h2FadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero text */
.h2-hero-text .hero-badge {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.h2-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 1.5rem 0;
}

.h2-title-line {
  display: block;
}

.h2-title-accent {
  font-style: italic;
  color: #2d7a1f; /* Vibrant green for improved contrast on light backgrounds */
  font-size: 1.15em;
  text-shadow: 0 2px 4px rgba(45, 122, 31, 0.2);
  font-weight: 500;
}

.h2-hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.h2-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.h2-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}

.h2-btn-outline:hover {
  border-color: var(--accent-green-light);
  color: var(--accent-green-light);
  transform: translateY(-2px);
}

.h2-btn-glow {
  box-shadow: 0 0 20px rgba(74, 140, 66, 0.4), 0 4px 20px rgba(45, 90, 39, 0.4);
}

.h2-btn-glow:hover {
  box-shadow: 0 0 35px rgba(74, 140, 66, 0.6), 0 8px 30px rgba(45, 90, 39, 0.5);
}

.h2-trust-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.h2-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.h2-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border-color);
}

/* Hero Visual */
.h2-hero-visual {
  position: relative;
  height: 580px;
}

.h2-plant-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  transition: transform 0.6s var(--transition-bounce), box-shadow 0.4s ease;
}

.h2-plant-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.h2-plant-main {
  width: 260px;
  top: 20px;
  left: 51%;
  transform: translateX(-50%);
  z-index: 2;
}

.h2-plant-side-1 {
  width: 160px;
  bottom: 60px;
  left: 0;
  z-index: 3;
  animation: h2FloatCard 6s ease-in-out infinite;
}

.h2-plant-side-2 {
  width: 150px;
  top: 40px;
  right: 0;
  z-index: 3;
  animation: h2FloatCard 7s ease-in-out infinite 2s;
}

@keyframes h2FloatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.h2-plant-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.h2-plant-main .h2-plant-img-wrap {
  height: 320px;
}

.h2-plant-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.h2-plant-card:hover .h2-plant-img-wrap img {
  transform: scale(1.08);
}

/* Image reveal mask */
.h2-img-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-card) 100%);
  pointer-events: none;
}

.h2-plant-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
}

.h2-plant-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
}

.h2-plant-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-green-light);
}

.h2-quick-add {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
  padding: 0.6rem;
  background: var(--accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
}

.h2-quick-add:hover {
  background: var(--accent-green-light);
  transform: scale(1.02);
}

/* Float badges */
.h2-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  z-index: 4;
  backdrop-filter: blur(10px);
  animation: h2FloatCard 5s ease-in-out infinite;
}

.h2-float-badge-1 {
  top: 30px;
  left: 5%;
  animation-delay: 1s;
}

.h2-float-badge-2 {
  bottom: 100px;
  right: 5%;
  animation-delay: 3s;
}

.h2-badge-icon {
  font-size: 1rem;
}

.h2-deco-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: h2RingSpin 20s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes h2RingSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ---- CATEGORIES GRID ---- */
.h2-categories {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.h2-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.h2-cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  box-shadow: var(--shadow-card);
  transition: transform 0.55s var(--transition-bounce), box-shadow 0.4s ease;
}

.h2-cat-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.h2-cat-img-wrap {
  position: absolute;
  inset: 0;
}

.h2-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.h2-cat-card:hover .h2-cat-img-wrap img {
  transform: scale(1.1);
}

.h2-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.7) 100%);
  transition: background 0.5s ease;
}

.h2-cat-card:hover .h2-cat-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(var(--cat-color), 0.75) 100%);
}

/* Bloom ring on hover */
.h2-bloom-ring {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  border: 1.5px solid rgba(74, 140, 66, 0.5);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.55s ease;
  pointer-events: none;
  z-index: 3;
}

.h2-cat-card:hover .h2-bloom-ring {
  opacity: 1;
  transform: scale(1);
  animation: h2BloomPulse 1.8s ease-in-out infinite;
}

@keyframes h2BloomPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.h2-cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem;
  z-index: 2;
}

.h2-cat-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: transform 0.4s var(--transition-bounce);
}

.h2-cat-card:hover .h2-cat-icon {
  transform: scale(1.3) rotate(-8deg);
}

.h2-cat-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
  margin: 0 0 0.2rem;
}

.h2-cat-count {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.h2-cat-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s ease;
  font-size: 1.2rem;
  color: var(--accent-green-light);
  margin-top: 0.6rem;
}

.h2-cat-card:hover .h2-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- BEST SELLERS SECTION ---- */
.h2-bestsellers {
  background: var(--bg-primary);
  padding: 6rem 0;
}

.h2-bs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  gap: 1.5rem;
}

.h2-view-all {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-green);
  border-bottom: 1px solid var(--accent-green-pale);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.h2-view-all:hover {
  color: var(--accent-green-light);
  border-color: var(--accent-green-light);
}

/* Carousel */
.h2-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.h2-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.h2-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.h2-carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
  line-height: 1;
}

.h2-carousel-btn:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: white;
  transform: scale(1.1);
}

.h2-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.h2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.h2-dot.active {
  background: var(--accent-green);
  transform: scale(1.4);
  width: 24px;
  border-radius: var(--radius-full);
}

/* Product Card */
.h2-product-card {
  flex: 0 0 calc(25% - 1.125rem);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.5s var(--transition-bounce), box-shadow 0.4s ease;
  cursor: pointer;
}

.h2-product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.h2-product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-secondary);
}

/* Image reveal on scroll */
.h2-product-img-wrap.img-reveal {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.9s var(--transition-slow);
}

.h2-product-img-wrap.img-reveal.visible {
  clip-path: inset(0 0% 0 0);
}

.h2-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.h2-product-card:hover .h2-product-img-wrap img {
  transform: scale(1.08);
}

.h2-product-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}

.h2-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.h2-badge-hot {
  background: rgba(200, 60, 20, 0.85);
  color: white;
}

.h2-badge-new {
  background: rgba(74, 140, 66, 0.85);
  color: white;
}

.h2-badge-sale {
  background: rgba(180, 150, 10, 0.85);
  color: white;
}

.h2-product-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  z-index: 2;
}

.h2-product-card:hover .h2-product-actions {
  opacity: 1;
  transform: translateX(0);
}

.h2-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}

.h2-action-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: transparent;
}

.h2-product-info {
  padding: 1.2rem;
}

.h2-product-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.35rem;
}

.h2-product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.h2-product-rating {
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.h2-rating-count {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.h2-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h2-product-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.h2-price-current {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.h2-price-old {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.h2-add-cart {
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
}

/* ---- SHOP BY MOOD ---- */
.h2-mood {
  background: var(--bg-secondary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.h2-mood-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.h2-mood-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.h2-mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.h2-mood-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--transition-bounce), box-shadow 0.4s ease;
}

.h2-mood-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.h2-mood-card-tall {
  grid-column: 3;
  grid-row: 1 / 3;
  min-height: auto;
}

.h2-mood-img-wrap {
  position: absolute;
  inset: 0;
}

.h2-mood-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.h2-mood-card:hover .h2-mood-img-wrap img {
  transform: scale(1.07);
}

.h2-mood-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.h2-mood-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.h2-mood-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
}

.h2-mood-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
}

.h2-mood-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 280px;
}

.h2-mood-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 1.3rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  text-decoration: none;
}

.h2-mood-cta:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: translateX(4px);
}

/* ---- OFFERS BANNER ---- */
.h2-offers {
  background: var(--bg-primary);
  padding: 6rem 0;
}

.h2-offers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.h2-offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 3rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.h2-offer-bg-img {
  position: absolute;
  inset: 0;
}

.h2-offer-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.h2-offer-card:hover .h2-offer-bg-img img {
  transform: scale(1.05);
}

.h2-offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 8, 0.75) 0%, rgba(45, 90, 39, 0.55) 100%);
}

.h2-offer-content {
  position: relative;
  z-index: 2;
}

.h2-offer-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--accent-green-light);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.h2-offer-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.h2-offer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.h2-offer-desc strong {
  color: white;
}

/* Countdown */
.h2-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.h2-countdown-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  backdrop-filter: blur(8px);
  min-width: 56px;
}

.h2-countdown-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.h2-countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.h2-countdown-sep {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  align-self: flex-start;
  margin-top: 0.4rem;
}

/* Side mini offers */
.h2-offers-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.h2-offer-mini {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: all 0.35s ease;
  cursor: pointer;
}

.h2-offer-mini:hover {
  border-color: var(--accent-green);
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
}

.h2-offer-mini-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(74, 140, 66, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.h2-offer-mini-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.h2-offer-mini-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.h2-offer-mini-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.h2-offer-mini:hover .h2-offer-mini-link {
  color: var(--accent-green-light);
}

/* ---- REVIEWS SECTION ---- */
.h2-reviews {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.h2-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.h2-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.3s ease;
}

.h2-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.h2-review-stars {
  font-size: 1rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.h2-review-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.h2-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.h2-review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.h2-review-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.h2-review-role {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Review stats */
.h2-review-stats {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.h2-stat-big {
  text-align: center;
}

.h2-stat-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}

.h2-stat-stars {
  display: block;
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.h2-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.h2-stat-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.h2-stat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.h2-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.h2-bar {
  height: 100%;
  width: var(--w, 0%);
  background: var(--accent-green);
  border-radius: var(--radius-full);
  transition: width 1.5s var(--transition-slow);
}

.h2-stat-info {
  text-align: center;
}

.h2-stat-total {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.h2-stat-total strong {
  color: var(--text-primary);
}

/* ---- NEWSLETTER / CTA BAND ---- */
.h2-cta-band {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-moss) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.h2-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.h2-cta-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.h2-cta-orb-1 {
  display: none;
}

.h2-cta-orb-2 {
  display: none;
}

.h2-nl-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.h2-nl-input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  outline: none;
}

.h2-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.h2-nl-btn {
  background: white;
  color: var(--accent-green);
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.h2-nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ---- TOAST NOTIFICATION ---- */
.h2-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--accent-green);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-hover);
  z-index: 500;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s var(--transition-bounce);
  pointer-events: none;
}

.h2-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.h2-toast-icon {
  font-size: 1.2rem;
}

/* ================================================================
   RESPONSIVE � TABLET (max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .h2-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 6rem;
    padding-bottom: 3rem;
    text-align: center;
  }

  .h2-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .h2-hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .h2-hero-cta {
    justify-content: center;
  }

  .h2-trust-row {
    justify-content: center;
  }

  .h2-hero-visual {
    height: 400px;
    max-width: 420px;
    margin: 0 auto;
  }

  .h2-plant-main {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .h2-plant-side-1,
  .h2-plant-side-2 {
    display: none;
  }

  .h2-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .h2-product-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .h2-mood-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .h2-mood-card-tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 280px;
  }

  .h2-offers-inner {
    grid-template-columns: 1fr;
  }

  .h2-offer-card {
    min-height: 300px;
  }

  .h2-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .h2-review-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .h2-stat-bars {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ================================================================
   RESPONSIVE � MOBILE (max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {
  .h2-hero {
    padding-top: 10px;
  }

  .h2-hero-inner {
    padding-top: 4rem;
  }

  .h2-hero-title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .h2-hero-visual {
    height: 400px;
    margin-top: 2rem;
  }

  .h2-plant-main {
    width: 260px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .h2-plant-main .h2-plant-img-wrap {
    height: 280px;
  }

  .h2-plant-side-1,
  .h2-plant-side-2 {
    display: none;
  }

  @media (max-width: 480px) {
    .h2-hero-visual {
      height: 380px;
    }

    .h2-plant-main {
      width: 240px;
    }

    .h2-plant-main .h2-plant-img-wrap {
      height: 250px;
    }
  }

  .h2-float-badge {
    display: none;
  }

  .h2-deco-ring {
    display: none;
  }

  .h2-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .h2-bs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .h2-carousel-btn {
    display: none;
  }

  .h2-carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .h2-carousel-track {
    padding-bottom: 0.5rem;
  }

  .h2-product-card {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }

  .h2-mood-grid {
    grid-template-columns: 1fr;
  }

  .h2-mood-card-tall {
    grid-column: 1;
    grid-row: auto;
  }

  .h2-mood-card {
    min-height: 300px;
  }

  .h2-offers-inner {
    grid-template-columns: 1fr;
  }

  .h2-reviews-grid {
    grid-template-columns: 1fr;
  }

  .h2-toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
}

/* ================================================================
   RESPONSIVE � SMALL MOBILE (max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {
  .h2-cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .h2-cat-card {
    aspect-ratio: 1;
  }

  .h2-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .h2-trust-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .h2-trust-divider {
    display: none;
  }

  .h2-review-stats {
    padding: 1.5rem;
  }

  .h2-offers-side {
    gap: 1rem;
  }

  .h2-offer-mini {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* RTL support for home2 elements */
[dir="rtl"] .h2-hero-inner {
  direction: rtl;
}

[dir="rtl"] .h2-hero-cta {
  flex-direction: row-reverse;
}

[dir="rtl"] .h2-trust-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .h2-bs-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .h2-offer-mini:hover {
  transform: translateX(-6px);
}

[dir="rtl"] .h2-mood-cta:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .h2-cat-arrow {
  transform: translateX(8px) scaleX(-1);
}

[dir="rtl"] .h2-cat-card:hover .h2-cat-arrow {
  transform: translateX(0) scaleX(-1);
}

[dir="rtl"] .h2-toast {
  right: auto;
  left: 2rem;
}

/* ================================================================
   ABOUT PAGE � Botanical Conservatory & Garden Center
   about.html styles � appended to style.css
   ================================================================ */

/* ---- LOADING SCREEN ---- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.loading-leaf {
  font-size: 3rem;
  animation: loadingLeafSpin 2s ease-in-out infinite;
  display: block;
}

@keyframes loadingLeafSpin {

  0%,
  100% {
    transform: rotate(-15deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.1);
  }
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: var(--border-color);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  background: var(--accent-green);
  border-radius: var(--radius-full);
  animation: loadingProgress 1.5s ease-in-out forwards;
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ---- FLOATING LEAVES ---- */
.leaf-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-leaf {
  position: absolute;
  top: -5%;
  animation: leafFall var(--duration, 12s) var(--delay, 0s) linear infinite;
  opacity: 0.5;
  user-select: none;
}

@keyframes leafFall {
  0% {
    top: -5%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    top: 105%;
    transform: translateX(var(--drift, 80px)) rotate(720deg);
    opacity: 0;
  }
}

/* ---- ABOUT HERO ---- */
.about-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/image/pexels-b-o-minh-1883288-31182412.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.about-hero.loaded .about-hero-bg {
  transform: scale(1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 8, 0.35) 0%, rgba(10, 20, 8, 0.55) 60%, rgba(10, 20, 8, 0.8) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 4.5rem 1.5rem 1rem;
  max-width: 680px;
}

/* Smaller hero badge for about page */
.about-hero-content .hero-badge {
  font-size: 0.65rem;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

/* Compact title � override the default 6rem clamp */
.about-hero-content .hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
  animation: fadeInUp 1s ease 0.5s both;
}

/* Compact subtitle */
.about-hero-content .hero-subtitle {
  font-size: 0.88rem;
  max-width: 420px;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.7s both;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.2rem;
  animation: fadeInUp 1s ease 0.9s both;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.about-breadcrumb a:hover {
  color: #9ce695; /* High-contrast green on hover */
}

.about-breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.85);
}

/* Keyframes used by hero */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- STATS BAND ---- */
.about-stats-band {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 0 0;
}

.about-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 3.5rem;
  gap: 0.3rem;
  min-width: 160px;
}

.about-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--accent-green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-suffix {
  font-family: var(--font-display);
  font-size: 2.5rem; /* Increased size */
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  margin-left: 0.3rem; /* Added space between number and + */
  display: inline-block;
}

.about-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* ---- ABOUT STORY (Custom Design) ---- */
.about-story {
  padding: var(--space-xl) 0;
  position: relative;
}

.about-story::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(74, 140, 66, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

.about-story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-story .story-visual {
  position: relative;
  order: 1;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.about-story .story-content {
  order: 2;
  max-width: 100%;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.about-story .section-badge {
  color: var(--accent-green);
  font-weight: 500;
}

.about-story .section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin: 1rem 0 2rem;
  line-height: 1.2;
}

.about-story .story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-story .story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.about-story .story-stat-badge {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  background: var(--accent-green);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  z-index: 3;
}

.about-story .story-img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
  object-fit: cover;
}

/* Extend story values from main styles */
.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: border-color 0.3s, transform 0.3s var(--transition-bounce);
}

.value-item:hover {
  border-color: var(--accent-green-pale);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.value-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- MISSION / VISION / PROMISE ---- */
.about-mission {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.about-mission-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-moss) 0%, var(--accent-green) 60%, var(--accent-green-light) 100%);
  z-index: 0;
}

.about-mission-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-mvv-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.4s var(--transition-bounce), background 0.3s;
}

.about-mvv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.mvv-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.mvv-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
}

/* ---- TIMELINE ---- */
.about-timeline {
  background: var(--bg-secondary);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 140, 66, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg, transparent, var(--border-color) 10%, var(--accent-green-pale) 50%, var(--border-color) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Alternate sides: even items flip */
.timeline-item:nth-child(even) .timeline-year {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-dot {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-year {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-dot {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent-green);
  letter-spacing: -0.01em;
  padding-top: 0.15rem;
  white-space: nowrap;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2.5px solid var(--accent-green-pale);
  margin: 0.4rem auto 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s, transform 0.3s var(--transition-bounce);
}

.timeline-item:hover .timeline-dot {
  border-color: var(--accent-green-light);
  transform: scale(1.4);
}

.timeline-dot--active {
  background: var(--accent-green);
  border-color: var(--accent-green-light);
  box-shadow: 0 0 0 4px rgba(74, 140, 66, 0.2);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s var(--transition-bounce);
}

.timeline-content:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- TEAM SECTION ---- */
.about-team {
  background: var(--bg-primary);
  padding: var(--space-xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
  cursor: default;
}

.team-card:hover,
.team-card:focus {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.team-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(10, 20, 8, 0.7) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.team-card:hover .team-social,
.team-card:focus .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  transition: background 0.2s, transform 0.2s;
}

.team-social a:hover {
  background: var(--accent-green);
  border-color: transparent;
  transform: scale(1.15);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}

.team-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- AWARDS ---- */
.about-awards {
  background: var(--bg-secondary);
  padding: var(--space-xl) 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.3s;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

.award-icon {
  font-size: 2rem;
  display: block;
}

.award-year {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.award-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.award-org {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- ABOUT CTA BAND ---- */
.about-cta-band {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-moss) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-cta-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta-orb-1 {
  display: none;
}

.about-cta-orb-2 {
  display: none;
}

/* ================================================================
   ABOUT PAGE � RESPONSIVE (Tablet: max-width 1024px)
   ================================================================ */
@media (max-width: 1024px) {

  /* Stats band */
  .about-stat-item {
    padding: 1rem 2rem;
    min-width: 130px;
  }

  /* Story � tablet: stack vertically, keep mosaic but shorter */
  .about-story .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-mosaic {
    height: auto;
    min-height: 380px;
  }

  .about-story .story-content {
    padding: 2.5rem;
  }

  /* Mission */
  .about-mvv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Timeline � keep but tighten */
  .timeline {
    max-width: 100%;
    padding: 0 1rem;
  }

  .timeline-item {
    gap: 0 1.5rem;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Awards */
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   ABOUT PAGE � RESPONSIVE (Mobile: max-width 768px)
   ================================================================ */
@media (max-width: 768px) {

  /* Hero */
  .about-hero {
    height: 45vh;
    min-height: 320px;
  }

  /* Stats */
  .about-stats-grid {
    gap: 0;
  }

  .about-stat-item {
    padding: 1rem 1.5rem;
    min-width: 110px;
  }

  .about-stat-divider {
    height: 40px;
  }

  .about-stats-grid {
    flex-wrap: wrap;
  }

  /* Story � mobile: simplify mosaic */
  .story-values {
    grid-template-columns: 1fr;
  }

  .story-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }

  .story-mosaic-primary {
    height: 280px;
  }

  .story-mosaic-secondary {
    flex-direction: row;
  }

  .story-mosaic-img2 {
    flex: 1;
    height: 140px;
  }

  .story-stat-card {
    width: 130px;
    flex-shrink: 0;
  }

  .about-story .story-content {
    padding: 1em;
  }

  /* Mission */
  .about-mvv-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline � collapse to single column */
  .timeline::before {
    left: 24px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    padding-left: 0;
  }

  /* Reset all alternating for mobile */
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    font-size: 1.1rem;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0.4rem auto;
    justify-self: center;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Awards */
  .awards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ================================================================
   ABOUT PAGE � RESPONSIVE (Small Mobile: max-width 480px)
   ================================================================ */
@media (max-width: 480px) {

  /* Stats: 2�2 grid */
  .about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .about-stat-divider {
    display: none;
  }

  .about-stat-item {
    padding: 1.5rem 1rem;
    border: 1px solid var(--border-color);
    min-width: unset;
  }

  .about-stat-num {
    font-size: 2.2rem;
  }

  /* Team: single column */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Awards: single column */
  .awards-grid {
    grid-template-columns: 1fr;
  }

  /* CTA buttons: stack */
  .about-cta-band .btn {
    width: 100%;
    justify-content: center;
  }
}

/* RTL support for About page */
[dir="rtl"] .about-breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .timeline::before {
  left: auto;
  right: 50%;
  transform: none;
}

[dir="rtl"] .timeline-item:nth-child(odd) .timeline-year {
  grid-column: 3;
  text-align: left;
}

[dir="rtl"] .timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

[dir="rtl"] .timeline-item:nth-child(even) .timeline-year {
  grid-column: 1;
  text-align: right;
}

[dir="rtl"] .timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}

@media (max-width: 768px) {
  [dir="rtl"] .timeline::before {
    left: auto;
    right: 24px;
  }

  [dir="rtl"] .timeline-item {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr 48px;
  }

  [dir="rtl"] .timeline-item:nth-child(odd) .timeline-dot,
  [dir="rtl"] .timeline-item:nth-child(even) .timeline-dot {
    grid-column: 2;
  }

  [dir="rtl"] .timeline-item:nth-child(odd) .timeline-year,
  [dir="rtl"] .timeline-item:nth-child(even) .timeline-year {
    grid-column: 1;
    text-align: right;
  }

  [dir="rtl"] .timeline-item:nth-child(odd) .timeline-content,
  [dir="rtl"] .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 2;
    text-align: right;
  }
}

/* ============================================================
   ABOUT PAGE HERO
   ============================================================ */
.about-hero {
  position: relative;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/pexels-b-o-minh-1883288-31182412.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.workshop-hero-bg {
  background-image: url('../image/pexels-b-o-minh-1883288-31182412.jpg');
}

/* ============================================================
   EXPLORE PAGE HERO
   ============================================================ */
.explore-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.explore-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/pexels-szafran-34337836.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.explore-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.explore-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.explore-hero .hero-title {
  font-size: clamp(0.8rem, 5vw, 4rem);
}

/* ============================================================
   COLLECTION PAGE HERO
   ============================================================ */
.collection-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.collection-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/tropical.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.collection-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.collection-hero .hero-title {
  font-size: clamp(0.8rem, 5vw, 4rem);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.about-hero .hero-title {
  font-size: clamp(0.8rem, 5vw, 4rem);
}

.about-hero .hero-subtitle {
  font-size: clamp(0.7rem, 1.5vw, 1.05rem);
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2rem;
  animation: fadeInUp 1s ease 0.9s both;
}

.about-breadcrumb a {
  color: white;
  transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
  color: #9ce695; /* High-contrast green on hover */
}

.about-breadcrumb span[aria-current="page"] {
  color: #9ce695; /* High-contrast green for active breadcrumb */
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ---- CONTACT HERO ---- */
.contact-hero {
  position: relative;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/pexels-chipi1189-34056749.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  transform-origin: center;
  transition: transform 0.1s linear;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.contact-hero .hero-title {
  font-size: clamp(1.8rem, 6vw, 4.5rem);
}

.contact-hero .hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- CONTACT INFO BAND ---- */
.contact-info-band {
  background: var(--bg-secondary);
  padding: 4rem 0;
  border-bottom: 1px solid var(--section-divider);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.35s var(--transition-bounce), box-shadow 0.35s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

.contact-info-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.contact-info-detail {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-style: normal;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--section-divider);
  padding: 0.3rem 0;
}

.contact-hours-holiday {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-style: italic;
}

.contact-info-link {
  font-size: 0.84rem;
  color: var(--accent-green);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  text-decoration: none;
}

.contact-info-link:hover {
  color: var(--accent-green-light);
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* ---- MAIN CONTACT SECTION ---- */
.contact-main {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

/* Form column */
.contact-form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.contact-form-heading em {
  font-style: italic;
  color: var(--accent-green);
}

.contact-form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Inquiry tabs */
.contact-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  padding: 0.3rem;
  width: fit-content;
}

.contact-tab {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.contact-tab.active,
.contact-tab[aria-selected="true"] {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(45, 90, 39, 0.3);
}

.contact-tab:hover:not(.active) {
  color: var(--accent-green);
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-label span {
  color: var(--accent-green);
}

.contact-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: none;
}

.contact-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.contact-input:focus {
  border-color: var(--accent-green-light);
  box-shadow: 0 0 0 3px rgba(74, 140, 66, 0.12);
}

.contact-input.input-error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.1);
}

.contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-field-err {
  font-size: 0.75rem;
  color: #e05c5c;
  min-height: 1em;
  display: block;
}

.contact-char-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.15rem;
}

/* Preferred contact fieldset */
.contact-prefer-fieldset {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-prefer-fieldset legend {
  padding: 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-prefer-options {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-radio-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.contact-radio-label:hover {
  color: var(--accent-green);
}

.contact-radio-label input[type="radio"] {
  accent-color: var(--accent-green);
  width: 16px;
  height: 16px;
}

/* Privacy checkbox */
.contact-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.6;
}

.contact-checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-green);
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-inline-link {
  color: var(--accent-green);
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-inline-link:hover {
  color: var(--accent-green-light);
}

/* Submit button */
.contact-submit-btn {
  background: var(--accent-green);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  transition: background 0.3s ease, transform 0.3s var(--transition-bounce), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-submit-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.35);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

.contact-submit-btn.loading .contact-btn-text {
  opacity: 0;
}

.contact-submit-btn.loading .contact-btn-loader {
  display: block;
}

.contact-btn-loader {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contactSpin 0.7s linear infinite;
}

@keyframes contactSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Success message */
.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid var(--accent-green-pale);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  animation: contactFadeIn 0.5s ease;
}

.contact-success[hidden] {
  display: none;
}

.contact-success strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent-green);
  margin-bottom: 0.2rem;
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- MAP COLUMN ---- */
.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.contact-map-iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: none;
  filter: saturate(0.85) brightness(0.97);
  transition: filter 0.3s ease;
}

[data-theme="dark"] .contact-map-iframe {
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
}

.contact-map-wrap:hover .contact-map-iframe {
  filter: saturate(1) brightness(1);
}

.contact-map-pin {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  pointer-events: none;
}

.contact-map-pin-label {
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

/* Quick contact cards */
.contact-quick-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.contact-quick-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-quick-card:hover {
  border-color: var(--accent-green-pale);
  box-shadow: var(--shadow-soft);
  transform: translateX(4px);
  color: var(--accent-green);
}

.contact-quick-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-quick-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.contact-quick-val {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: inherit;
  transition: color 0.2s;
}

/* ---- FAQ SECTION ---- */
.contact-faq {
  background: var(--bg-secondary);
  padding: 6rem 0;
  border-top: 1px solid var(--section-divider);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
}

.contact-faq-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-faq-item[open] {
  border-color: var(--accent-green-pale);
  box-shadow: var(--shadow-soft);
}

.contact-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}

.contact-faq-q::-webkit-details-marker {
  display: none;
}

.contact-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.contact-faq-item[open] .contact-faq-q::after {
  transform: rotate(45deg);
}

.contact-faq-item[open] .contact-faq-q {
  color: var(--accent-green);
}

.contact-faq-a {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.85;
  animation: contactFadeIn 0.35s ease;
}

/* ================================================================
   CONTACT PAGE � RESPONSIVE (Tablet: max-width 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-map-col {
    max-width: 680px;
    width: 100%;
  }

  .contact-faq-grid {
    gap: 1rem 2rem;
  }
}

/* ================================================================
   CONTACT PAGE � RESPONSIVE (Mobile: max-width 768px)
   ================================================================ */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 55vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .contact-hero .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-info-card {
    padding: 1.5rem 1.25rem;
  }

  .contact-main {
    padding: 4rem 0;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-tabs {
    width: 100%;
    justify-content: center;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-iframe {
    height: 260px;
  }

  .contact-prefer-options {
    gap: 1rem;
  }
}

/* ================================================================
   CONTACT PAGE � RESPONSIVE (Small Mobile: max-width 480px)
   ================================================================ */
@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .contact-tabs {
    border-radius: var(--radius-md);
    padding: 0.2rem;
  }

  .contact-tab {
    padding: 0.5rem 0.8rem;
    font-size: 0.72rem;
    flex: 1;
    text-align: center;
  }

  .contact-map-iframe {
    height: 220px;
  }

  .contact-quick-cards {
    gap: 0.65rem;
  }

  .contact-quick-card {
    padding: 0.85rem 1rem;
  }
}

/* RTL support for Contact page */
[dir="rtl"] .contact-breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-hours-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-quick-card:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .contact-faq-q::after {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .contact-prefer-options {
  flex-direction: row-reverse;
}

/* ================================================================
   WORKSHOPS & EVENTS PAGE
   ================================================================ */

/* ---- HERO ---- */
.ws-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 1rem 5rem;
}

.ws-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=85&auto=format&fit=crop') center/cover no-repeat;
  transform-origin: center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.ws-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

/* ---- STATS BAND ---- */
.ws-stats-band {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}

.ws-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ws-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 3rem;
  text-align: center;
}

.ws-stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.ws-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--accent-green);
  line-height: 1;
}

.ws-stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ws-stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* ---- FILTER BAR ---- */
.ws-filter-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 0;
  position: sticky;
  top: 65px;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.ws-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ws-filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.ws-filter-tab {
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ws-filter-tab:hover {
  color: var(--accent-green);
  border-color: var(--accent-green-pale);
  background: rgba(45, 90, 39, 0.05);
}

.ws-filter-tab.active {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.ws-view-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.3rem;
}

.ws-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all 0.2s ease;
  cursor: pointer;
}

.ws-view-btn:hover {
  color: var(--accent-green);
  background: rgba(45, 90, 39, 0.08);
}

.ws-view-btn.active {
  background: var(--accent-green);
  color: white;
}

/* ---- UPCOMING SECTION ---- */
.ws-upcoming {
  padding: 5rem 0 6rem;
  background: var(--bg-primary);
}

/* Section header (shared) */
.section-subtitle {
  max-width: 600px;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  text-align: center;
}

/* ---- EVENTS GRID ---- */
.ws-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* ---- EVENT CARD ---- */
.ws-event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease, border-color 0.3s ease;
}

.ws-event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

.ws-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.ws-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ws-event-card:hover .ws-card-img {
  transform: scale(1.06);
}

.ws-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(8px);
}

.ws-badge-workshop {
  background: rgba(45, 90, 39, 0.9);
  color: white;
}

.ws-badge-tour {
  background: rgba(184, 150, 12, 0.9);
  color: white;
}

.ws-badge-kids {
  background: rgba(180, 90, 120, 0.9);
  color: white;
}

.ws-badge-seasonal {
  background: rgba(100, 60, 160, 0.9);
  color: white;
}

.ws-card-spots {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 20, 8, 0.75);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ws-spots-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.ws-spots-few {
  background: #f0a040;
}

.ws-spots-ok {
  background: #4caf7d;
}

.ws-spots-full {
  background: #e05c5c;
}

.ws-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.ws-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ws-meta-date,
.ws-meta-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ws-meta-level {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-left: auto;
}

.ws-level-beginner {
  background: rgba(76, 175, 125, 0.15);
  color: #3d8c6a;
}

.ws-level-inter {
  background: rgba(184, 150, 12, 0.15);
  color: var(--accent-gold);
}

.ws-level-all {
  background: rgba(45, 90, 39, 0.12);
  color: var(--accent-green);
}

[data-theme="dark"] .ws-level-beginner {
  background: rgba(76, 175, 125, 0.18);
  color: #6cba9a;
}

[data-theme="dark"] .ws-level-inter {
  background: rgba(212, 175, 55, 0.18);
  color: var(--accent-gold-light);
}

[data-theme="dark"] .ws-level-all {
  background: rgba(74, 140, 66, 0.18);
  color: var(--accent-green-light);
}

.ws-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.ws-card-desc {
  font-size: 0.90rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.ws-card-instructor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.ws-instructor-avatar {
  width: 34px;
  height: 34px;
  background: var(--bg-card);
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.ws-instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ws-instructor-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ws-instructor-role {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.ws-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}

.ws-card-price {
  display: flex;
  flex-direction: column;
}

.ws-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent-green);
  line-height: 1;
}

.ws-price-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.ws-book-btn {
  position: relative;
  overflow: hidden;
  background: var(--accent-green);
  color: white;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
}

.ws-book-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.35);
}

.ws-book-btn-soldout {
  background: var(--accent-green);
  color: white;
  border: 1px solid var(--border-color);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.95;
}

/* Hidden card when filtered */
.ws-event-card[hidden],
.ws-list-item[hidden] {
  display: none !important;
}

/* ---- LIST VIEW ---- */
.ws-list-view {
  padding: 4rem 0 6rem;
  background: var(--bg-primary);
}

.ws-events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.ws-list-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.ws-list-item:hover {
  border-color: var(--accent-green-pale);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}

.ws-list-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  color: white;
  min-width: 72px;
  text-align: center;
}

.ws-list-month {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ws-list-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.ws-list-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.ws-list-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.ws-list-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.ws-list-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ws-list-book {
  align-self: center;
  flex-shrink: 0;
}

/* ---- CALENDAR VIEW ---- */
.ws-calendar-view {
  padding: 5rem 0 6rem;
  background: var(--bg-primary);
}

.ws-calendar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 2.5rem;
}

.ws-cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--accent-green);
}

.ws-cal-header>div {
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.ws-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.ws-cal-cell {
  min-height: 90px;
  padding: 0.6rem 0.5rem;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}

.ws-cal-cell:nth-child(7n) {
  border-right: none;
}

.ws-cal-cell:hover {
  background: rgba(45, 90, 39, 0.05);
}

.ws-cal-cell.ws-cal-other {
  opacity: 0.3;
  cursor: default;
}

.ws-cal-cell.ws-cal-today .ws-cal-day {
  background: var(--accent-gold);
  color: white;
}

.ws-cal-cell.ws-cal-selected {
  background: rgba(45, 90, 39, 0.08);
}

.ws-cal-cell.ws-cal-has-event {
  cursor: pointer;
}

.ws-cal-day {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  transition: background 0.2s;
}

.ws-cal-event-pip {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  background: var(--accent-green);
  border-radius: var(--radius-sm);
  padding: 0.15rem 0.4rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ws-cal-events-list {
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 120px;
}

.ws-cal-selected-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.ws-cal-event-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-color);
}

.ws-cal-event-row:last-child {
  border-bottom: none;
}

.ws-cal-event-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

.ws-cal-event-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
}

.ws-cal-event-time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- MODAL ---- */
.ws-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ws-modal[hidden] {
  display: none;
}

.ws-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 4, 0.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.ws-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: wsModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes wsModalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ws-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.ws-modal-close:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.ws-modal-img-wrap {
  height: 220px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-moss));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.ws-modal-img-placeholder {
  font-size: 5rem;
  opacity: 0.6;
}

.ws-modal-body {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ws-modal-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ws-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ws-modal-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
}

.ws-modal-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.ws-modal-detail-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ws-modal-detail-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.ws-modal-detail-val {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
}

.ws-modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.ws-modal-includes {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ws-modal-includes li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---- BOOKING FORM ---- */
.ws-modal-booking {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.ws-modal-booking-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.ws-price-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.ws-price-summary strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent-green);
  font-weight: 500;
}

.ws-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ws-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ws-form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ws-form-input {
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.ws-form-input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.12);
}

.ws-form-input.input-error {
  border-color: #e05c5c;
}

.ws-form-textarea {
  resize: vertical;
  min-height: 90px;
}

.ws-form-error {
  font-size: 0.76rem;
  color: #e05c5c;
  min-height: 1em;
}

.ws-ticket-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
}

.ws-ticket-btn {
  width: 40px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: transparent;
}

.ws-ticket-btn:hover {
  background: var(--accent-green);
  color: white;
}

.ws-ticket-input {
  border: none;
  border-radius: 0;
  text-align: center;
  width: 50px;
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}

.ws-ticket-input:focus {
  box-shadow: none;
}

.ws-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.ws-check-input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent-green);
  cursor: pointer;
  flex-shrink: 0;
}

.ws-check-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ws-booking-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(45, 90, 39, 0.06);
  border: 1px solid var(--accent-green-pale);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.ws-booking-total strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-green);
  font-weight: 500;
}

.ws-submit-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem;
  background: var(--accent-green);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: none;
}

.ws-submit-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.35);
}

.ws-submit-btn.loading .ws-submit-text {
  opacity: 0;
}

.ws-submit-btn.loading .ws-submit-loader {
  display: block;
}

.ws-submit-loader {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: wsSpin 0.7s linear infinite;
}

@keyframes wsSpin {
  to {
    transform: rotate(360deg);
  }
}

.ws-booking-success {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid var(--accent-green-pale);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  animation: wsFadeIn 0.5s ease;
}

.ws-booking-success[hidden] {
  display: none;
}

.ws-booking-success strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent-green);
  margin-bottom: 0.2rem;
}

@keyframes wsFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- CTA BAND ---- */
.ws-cta-band {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-moss) 100%);
  overflow: hidden;
}

.ws-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ws-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.ws-cta-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-gold);
  top: -100px;
  right: -80px;
}

.ws-cta-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.2);
  bottom: -80px;
  left: -60px;
}

/* ---- TESTIMONIALS ---- */
.ws-testimonials {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--section-divider);
}

.ws-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ws-testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
}

.ws-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.ws-testi-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.ws-testi-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.ws-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.ws-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.ws-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ws-testi-name {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ws-testi-role {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ================================================================
   WORKSHOPS PAGE � RESPONSIVE (Tablet: max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .ws-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ws-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-modal-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-stat-item {
    padding: 1rem 2rem;
  }
}

/* ================================================================
   WORKSHOPS PAGE � RESPONSIVE (Mobile: max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {
  .ws-hero {
    min-height: 55vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .ws-stats-grid {
    flex-wrap: wrap;
    gap: 0;
  }

  .ws-stat-item {
    width: 50%;
    padding: 1.25rem 1rem;
  }

  .ws-stat-divider {
    display: none;
  }

  .ws-filter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .ws-filter-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ws-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .ws-view-toggle {
    align-self: flex-end;
  }

  .ws-events-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ws-list-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .ws-list-book {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .ws-testi-grid {
    grid-template-columns: 1fr;
  }

  .ws-modal-panel {
    max-height: 95vh;
    border-radius: var(--radius-md);
  }

  .ws-modal-body {
    padding: 1.5rem;
  }

  .ws-modal-details-grid {
    grid-template-columns: 1fr;
  }

  .ws-form-row {
    grid-template-columns: 1fr;
  }

  .ws-cal-header>div {
    font-size: 0.6rem;
    padding: 0.75rem 0.1rem;
  }

  .ws-cal-cell {
    min-height: 60px;
    padding: 0.3rem;
  }

  .ws-cal-event-pip {
    display: none;
  }

  .ws-cal-cell.ws-cal-has-event::after {
    content: '�';
    display: block;
    color: var(--accent-green);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.15rem;
  }

  .ws-list-meta {
    gap: 0.5rem;
  }
}

/* ================================================================
   WORKSHOPS PAGE � RESPONSIVE (Small Mobile: max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {
  .ws-stat-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .ws-filter-tab {
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
  }

  .ws-card-img-wrap {
    height: 190px;
  }

  .ws-modal-img-wrap {
    height: 160px;
  }

  .ws-modal-title {
    font-size: 1.2rem;
  }

  .ws-cal-day {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .ws-list-date-col {
    min-width: 58px;
  }
}

/* RTL support for Workshops page */
[dir="rtl"] .ws-list-item:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .ws-filter-tabs {
  flex-direction: row-reverse;
}

[dir="rtl"] .ws-card-badge {
  left: auto;
  right: 1rem;
}

[dir="rtl"] .ws-card-spots {
  right: auto;
  left: 1rem;
}

[dir="rtl"] .ws-meta-level {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .ws-modal-close {
  right: auto;
  left: 1.2rem;
}

/* ================================================================
   AUTH PAGES � LOGIN & SIGNUP
   style.css additions
   ================================================================ */

/* ---- Full-page reset for auth ---- */
.auth-page {
  min-height: 100vh;
  overflow-x: hidden;
}

/* ================================================================
   AUTH LAYOUT � Two-panel split screen
   ================================================================ */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Signup reverses column order on desktop */
.auth-layout-signup {
  grid-template-columns: 1fr 1fr;
}

/* ================================================================
   VISUAL PANEL (left on login, right on signup)
   ================================================================ */
.auth-panel-visual {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.auth-visual-bg {
  position: absolute;
  inset: -5%;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1200&q=85&auto=format&fit=crop') center/cover no-repeat;
  will-change: transform;
  animation: authBgDrift 20s ease-in-out infinite alternate;
}

.auth-visual-bg-signup {
  background-image: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?w=1200&q=85&auto=format&fit=crop');
}

@keyframes authBgDrift {
  0% {
    transform: scale(1.08) translateY(0px);
  }

  100% {
    transform: scale(1.08) translateY(-20px);
  }
}

.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
      rgba(10, 25, 8, 0.55) 0%,
      rgba(10, 30, 8, 0.72) 60%,
      rgba(5, 15, 4, 0.88) 100%);
  z-index: 1;
}

.auth-fog {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Visual content */
.auth-visual-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.5rem;
  min-height: 100vh;
}

/* Brand on visual */
.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.auth-brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.4);
  flex-shrink: 0;
}

.auth-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.auth-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.02em;
}

.auth-brand-tagline {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Quote */
.auth-visual-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.auth-visual-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  position: relative;
}

.auth-visual-quote blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.12);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  pointer-events: none;
}

.auth-visual-quote cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* Stats (signup visual) */
.auth-visual-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.auth-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.auth-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  line-height: 1;
}

.auth-stat-lbl {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.auth-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Feature list */
.auth-visual-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.auth-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.auth-feature-icon {
  font-size: 1.05rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.auth-visual-est {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ================================================================
   FORM PANEL
   ================================================================ */
.auth-panel-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--bg-primary);
  min-height: 100vh;
  padding: 0 1rem 3rem;
  overflow-y: auto;
  transition: background-color 0.5s ease;
}

/* Top bar */
.auth-topbar {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 0;
  margin-bottom: 0.5rem;
}

.auth-topbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.auth-topbar-logo:hover {
  transform: scale(1.02);
}

.auth-topbar-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
  transition: transform 0.3s var(--transition-bounce);
  flex-shrink: 0;
  color: white;
}

.auth-topbar-logo:hover .auth-topbar-logo-icon {
  transform: rotate(15deg) scale(1.1);
}

.auth-topbar-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}


.auth-topbar-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-ctrl-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.auth-ctrl-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(45, 90, 39, 0.06);
}

/* Form card */
.auth-form-card {
  width: 100%;
  max-width: 480px;
  padding: 0;
  animation: authCardIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes authCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form header */
.auth-form-header {
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}

.auth-form-leaf {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  animation: authLeafPulse 3s ease-in-out infinite;
}

@keyframes authLeafPulse {

  0%,
  100% {
    transform: rotate(-5deg) scale(1);
  }

  50% {
    transform: rotate(5deg) scale(1.08);
  }
}

.auth-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.auth-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ---- Social buttons ---- */
.auth-social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.auth-social-btn:hover {
  border-color: var(--accent-green-pale);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  color: var(--text-primary);
}

/* Apple button � spans both columns */
.auth-social-btn-apple {
  grid-column: 1 / -1;
}


/* ---- Divider ---- */
.auth-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.auth-divider span {
  position: relative;
  background: var(--bg-primary);
  padding: 0 1rem;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Fields ---- */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.auth-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.auth-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.auth-optional {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
}

.auth-forgot-link {
  font-size: 0.75rem;
  color: var(--accent-green);
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.auth-forgot-link:hover {
  opacity: 0.75;
}

/* Input wrapper */
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.auth-input {
  width: 100%;
  padding: 0.82rem 1rem 0.82rem 2.75rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.auth-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.auth-input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3.5px rgba(45, 90, 39, 0.1);
  background: var(--bg-card);
}

.auth-input:focus+.auth-input-icon,
.auth-input-wrap:focus-within .auth-input-icon {
  color: var(--accent-green);
}

.auth-input.input-error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.1);
}

.auth-input.input-success {
  border-color: #4caf7d;
}

/* Eye toggle */
.auth-eye-btn {
  position: absolute;
  right: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}

.auth-eye-btn:hover {
  color: var(--accent-green);
}

/* Field error */
.auth-field-error {
  font-size: 0.74rem;
  color: #e05c5c;
  min-height: 1em;
  display: block;
  animation: authErrSlide 0.25s ease;
}

@keyframes authErrSlide {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Password strength */
.auth-pw-strength {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.auth-pw-bars {
  display: flex;
  gap: 3px;
  flex: 1;
}

.auth-pw-bar {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: var(--border-color);
  transition: background 0.3s ease;
}

.auth-pw-bar.active-weak {
  background: #e05c5c;
}

.auth-pw-bar.active-fair {
  background: var(--accent-gold);
}

.auth-pw-bar.active-good {
  background: var(--accent-sage);
}

.auth-pw-bar.active-strong {
  background: var(--accent-green);
}

.auth-pw-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 50px;
  text-align: right;
  transition: color 0.3s;
}

/* Remember / Terms row */
.auth-remember-row,
.auth-terms-row,
.auth-newsletter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
  user-select: none;
}

.auth-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.auth-check-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 5px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s ease;
  position: relative;
}

.auth-check-input:checked+.auth-check-custom {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.auth-check-input:checked+.auth-check-custom::after {
  content: '';
  width: 5px;
  height: 8px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.auth-check-input:focus+.auth-check-custom {
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

.auth-terms-link {
  color: var(--accent-green);
  text-decoration: none;
  transition: opacity 0.2s;
}

.auth-terms-link:hover {
  opacity: 0.7;
}

/* Interest chips */
.auth-interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.auth-interest-chip {
  position: relative;
  cursor: pointer;
}

.auth-interest-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.auth-interest-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 0.4rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  transition: all 0.2s ease;
  user-select: none;
}

.auth-interest-chip:hover span {
  border-color: var(--accent-green-pale);
  color: var(--text-primary);
}

.auth-interest-input:checked+span {
  background: rgba(45, 90, 39, 0.08);
  border-color: var(--accent-green);
  color: var(--accent-green);
  font-weight: 500;
}

/* Submit button */
.auth-submit-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-moss));
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
  margin-top: 0.5rem;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(45, 90, 39, 0.4);
}

.auth-submit-btn:active {
  transform: translateY(0);
}

.auth-submit-btn.loading .auth-submit-text {
  opacity: 0;
}

.auth-submit-btn.loading .auth-submit-loader {
  display: block;
}

.auth-submit-loader {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: authSpin 0.7s linear infinite;
}

@keyframes authSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Success message */
.auth-success {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid var(--accent-green-pale);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  animation: authFadeUp 0.5s ease;
  margin-top: 0.25rem;
}

.auth-success[hidden] {
  display: none;
}

.auth-success strong {
  display: block;
  font-size: 0.92rem;
  color: var(--accent-green);
  margin-bottom: 0.2rem;
}

@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Switch text */
.auth-switch-text {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.auth-switch-link {
  color: var(--accent-green);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.auth-switch-link:hover {
  opacity: 0.75;
}

/* Mobile brand */
.auth-mobile-brand {
  display: none;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ================================================================
   DARK MODE ADJUSTMENTS
   ================================================================ */
[data-theme="dark"] .auth-divider span {
  background: var(--bg-primary);
}

[data-theme="dark"] .auth-social-btn:hover {
  background: var(--bg-card-hover);
}


[data-theme="dark"] .auth-input {
  background: var(--bg-card);
  color: var(--text-primary);
}

[data-theme="dark"] .auth-input:focus {
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3.5px rgba(74, 140, 66, 0.15);
}

[data-theme="dark"] .auth-check-custom {
  background: var(--bg-card);
}

[data-theme="dark"] .auth-interest-chip span {
  background: var(--bg-card);
}

[data-theme="dark"] .auth-interest-input:checked+span {
  background: rgba(74, 140, 66, 0.15);
}

/* ================================================================
   RTL SUPPORT
   ================================================================ */
[dir="rtl"] .auth-layout {
  direction: rtl;
}

[dir="rtl"] .auth-input {
  padding-left: 1rem;
  padding-right: 2.75rem;
}

[dir="rtl"] .auth-input-icon {
  left: auto;
  right: 1rem;
}

[dir="rtl"] .auth-eye-btn {
  right: auto;
  left: 0.9rem;
}

[dir="rtl"] .auth-topbar {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-home-link {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-label-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-check-label {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-feature-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-brand {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-visual-quote blockquote::before {
  left: auto;
  right: -0.5rem;
}

[dir="rtl"] .auth-social-btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-success {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-pw-strength {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-pw-label {
  text-align: left;
}

/* ================================================================
   AUTH PAGES � RESPONSIVE (Tablet ? 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .auth-layout {
    grid-template-columns: 1fr 1fr;
  }

  .auth-visual-content {
    padding: 2rem 1.75rem;
  }

  .auth-visual-quote blockquote {
    font-size: 1.2rem;
  }

  .auth-visual-stats {
    padding: 0.75rem;
  }

  .auth-stat-num {
    font-size: 1.2rem;
  }

  .auth-interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   AUTH PAGES � RESPONSIVE (Mobile ? 768px)
   ================================================================ */
@media (max-width: 768px) {

  .auth-layout,
  .auth-layout-signup {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  /* Hide visual panel on mobile */
  .auth-panel-visual {
    display: none;
  }

  /* Form panel fills full screen */
  .auth-panel-form {
    min-height: 100vh;
    padding: 0 1.25rem 2.5rem;
    justify-content: flex-start;
  }

  .auth-topbar {
    max-width: 100%;
    padding-top: 1.25rem;
  }

  .auth-form-card {
    max-width: 100%;
    padding-top: 0.5rem;
  }

  .auth-form-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .auth-social-btns {
    grid-template-columns: 1fr;
  }

  .auth-form-row {
    grid-template-columns: 1fr;
  }

  .auth-interests-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Show mobile brand footer */
  .auth-mobile-brand {
    display: block;
  }
}

/* ================================================================
   AUTH PAGES � RESPONSIVE (Small Mobile ? 480px)
   ================================================================ */
@media (max-width: 480px) {
  .auth-panel-form {
    padding: 0 1rem 2rem;
  }

  .auth-topbar {
    padding-top: 1rem;
    margin-bottom: 0.25rem;
  }

  .auth-ctrl-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.68rem;
  }

  .auth-form-header {
    margin-bottom: 1.5rem;
  }

  .auth-interests-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .auth-submit-btn {
    padding: 0.9rem;
    font-size: 0.9rem;
  }

  .auth-input {
    padding: 0.75rem 0.9rem 0.75rem 2.5rem;
    font-size: 0.85rem;
  }
}

/* ================================================================
   DASHBOARD � Shared Layout
   ================================================================ */

/* Dashboard body removes hero overflow restrictions */
body.dashboard-page {
  overflow-x: hidden;
}

/* ---- Dashboard Shell ---- */
.dash-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg-primary);
}

/* ---- Sidebar ---- */
.dash-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--bg-card);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  z-index: 90;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), width 0.3s ease;
  box-shadow: 4px 0 24px rgba(45, 90, 39, 0.06);
  overflow-y: auto;
  overflow-x: hidden;
}

.dash-sidebar.collapsed {
  width: 68px;
}

.dash-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1rem 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  min-height: 68px;
  flex-shrink: 0;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.dash-sidebar.collapsed .dash-brand-text {
  display: none;
}

.dash-brand-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(45, 90, 39, 0.3);
}

.dash-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1;
}

.dash-brand-sub {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 0.1rem;
}

.dash-collapse-btn {
  display: none !important;
}

.dash-collapse-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: transparent;
}

.dash-sidebar.collapsed .dash-collapse-btn {
  transform: rotate(180deg);
}

/* Sidebar nav */
.dash-nav {
  padding: 1rem 0.75rem;
  flex: 1;
}

.dash-nav-section {
  margin-bottom: 1.5rem;
}

.dash-nav-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0.5rem;
  margin-bottom: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.2s;
}

.dash-sidebar.collapsed .dash-nav-label {
  opacity: 0;
  pointer-events: none;
}

.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.dash-nav-link .dash-nav-icon {
  font-size: 1.05rem;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.dash-nav-link .dash-nav-text {
  transition: opacity 0.2s;
}

.dash-sidebar.collapsed .dash-nav-text {
  opacity: 0;
  pointer-events: none;
  width: 0;
}

.dash-nav-link .dash-nav-badge {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--accent-green);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.dash-sidebar.collapsed .dash-nav-badge {
  opacity: 0;
}

.dash-nav-link:hover {
  background: var(--bg-secondary);
  color: var(--accent-green);
}

.dash-nav-link.active {
  background: rgba(45, 90, 39, 0.1);
  color: var(--accent-green);
  font-weight: 500;
}

.dash-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--accent-green);
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

/* Sidebar user/footer */
.dash-sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

.dash-user-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.2s;
}

.dash-user-card:hover {
  background: var(--bg-secondary);
}

.dash-avatar {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-green-pale);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  overflow: hidden;
}

.dash-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-user-info {
  overflow: hidden;
  transition: opacity 0.2s, width 0.2s;
}

.dash-sidebar.collapsed .dash-user-info {
  opacity: 0;
  width: 0;
  pointer-events: none;
}

.dash-user-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.dash-user-role {
  font-size: 0.7rem;
  color: var(--accent-green);
  letter-spacing: 0.04em;
}

/* ---- Topbar / Header ---- */
.dash-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem 0 1.5rem;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.dash-topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.dash-mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.dash-mobile-menu-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: transparent;
}

.dash-page-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.dash-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dash-breadcrumb a {
  color: var(--accent-green);
  transition: opacity 0.2s;
}

.dash-breadcrumb a:hover {
  opacity: 0.7;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-topbar-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  text-decoration: none;
}

.dash-topbar-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: transparent;
}

.dash-topbar-notif-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  background: #e55;
  border-radius: 50%;
  border: 2px solid var(--bg-secondary);
}

.dash-logout-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: rgba(200, 50, 50, 0.08);
  border: 1px solid rgba(200, 50, 50, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: #c83232;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.dash-logout-btn:hover {
  background: #c83232;
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
}

/* ---- Main Content ---- */
.dash-main {
  margin-left: 260px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s ease;
}

.dash-shell.sidebar-collapsed .dash-main {
  margin-left: 68px;
}

.dash-content {
  padding: 0.9rem 2rem 2rem;
  flex: 1;
}

.dash-view {
  display: none;
  animation: dashViewFade 0.25s ease;
  margin-top: 0;
  padding: 0;
}

.dash-view.dash-view-active {
  display: block;
}

@keyframes dashViewFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Dashboard Cards / Widgets ---- */
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.dash-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dash-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stat-color, var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dash-stat-card:hover::after {
  transform: scaleX(1);
}

.dash-stat-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.dash-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--stat-bg, rgba(45, 90, 39, 0.1));
  flex-shrink: 0;
}

.dash-stat-body {
  flex: 1;
  min-width: 0;
}

.dash-stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dash-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dash-stat-change {
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.dash-stat-change.up {
  background: rgba(45, 90, 39, 0.1);
  color: var(--accent-green);
}

.dash-stat-change.down {
  background: rgba(200, 50, 50, 0.08);
  color: #c83232;
}

/* ---- Grid Layouts ---- */
.dash-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.dash-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.dash-grid-70-30 {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ---- Panels ---- */
.dash-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dash-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-color);
}

.dash-panel-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-panel-body {
  padding: 1.2rem 1.4rem;
}

.dash-panel-action {
  font-size: 0.76rem;
  color: var(--accent-green);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
}

.dash-panel-action:hover {
  opacity: 0.7;
}

/* ---- Table ---- */
.dash-table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.dash-table th {
  text-align: left;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.dash-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--section-divider);
  color: var(--text-secondary);
  vertical-align: middle;
}

.dash-table tr:last-child td {
  border-bottom: none;
}

.dash-table tr:hover td {
  background: var(--bg-secondary);
}

.dash-table-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dash-table-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}

.dash-table-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Status Badges ---- */
.dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dash-badge-green {
  background: rgba(45, 90, 39, 0.1);
  color: var(--accent-green);
}

.dash-badge-gold {
  background: rgba(184, 150, 12, 0.1);
  color: var(--accent-gold);
}

.dash-badge-red {
  background: rgba(200, 50, 50, 0.08);
  color: #c83232;
}

.dash-badge-sage {
  background: rgba(122, 154, 106, 0.12);
  color: var(--accent-sage);
}

.dash-badge-blue {
  background: rgba(60, 100, 180, 0.1);
  color: #3c64b4;
}

/* ---- Action Buttons ---- */
.dash-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.dash-action-btn-primary {
  background: var(--accent-green);
  color: white;
}

.dash-action-btn-primary:hover {
  background: var(--accent-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(45, 90, 39, 0.3);
}

.dash-action-btn-outline {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-secondary);
}

.dash-action-btn-outline:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(45, 90, 39, 0.05);
}

.dash-action-btn-danger {
  background: transparent;
  border-color: rgba(200, 50, 50, 0.2);
  color: #c83232;
}

.dash-action-btn-danger:hover {
  background: rgba(200, 50, 50, 0.08);
}

/* ---- Calendar Widget ---- */
.dash-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.dash-cal-nav {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.2s;
}

.dash-cal-nav:hover {
  background: var(--accent-green);
  color: white;
  border-color: transparent;
}

.dash-cal-month {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
}

.dash-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dash-cal-dow {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0;
}

.dash-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s;
  color: var(--text-secondary);
  position: relative;
}

.dash-cal-day:hover {
  background: var(--bg-secondary);
  color: var(--accent-green);
}

.dash-cal-day.today {
  background: var(--accent-green);
  color: white;
  font-weight: 600;
}

.dash-cal-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.dash-cal-day.today.has-event::after {
  background: white;
}

.dash-cal-day.other-month {
  color: var(--text-muted);
  opacity: 0.4;
}

/* ---- Progress Bar ---- */
.dash-progress {
  height: 6px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 0.4rem;
}

.dash-progress-bar {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--accent-green), var(--accent-green-light));
  transition: width 1s ease;
}

/* ---- Care Reminders ---- */
.dash-reminder-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-reminder-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--reminder-color, var(--accent-green));
  transition: all 0.22s;
  cursor: pointer;
}

.dash-reminder-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateX(3px);
}

.dash-reminder-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dash-reminder-body {
  flex: 1;
  min-width: 0;
}

.dash-reminder-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.dash-reminder-due {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.dash-reminder-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  color: transparent;
  font-size: 0.65rem;
}

.dash-reminder-check:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.dash-reminder-check.done {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: white;
}

/* ---- Workshop Registration Cards ---- */
.dash-workshop-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dash-workshop-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.25s;
}

.dash-workshop-item:hover {
  border-color: var(--accent-green-pale);
  box-shadow: var(--shadow-soft);
}

.dash-workshop-date-box {
  width: 46px;
  min-width: 46px;
  background: var(--accent-green);
  color: white;
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 0.35rem 0;
}

.dash-workshop-date-box .day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.dash-workshop-date-box .mon {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.dash-workshop-info {
  flex: 1;
  min-width: 0;
}

.dash-workshop-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-workshop-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.75rem;
}

/* ---- Subscription Widget ---- */
.dash-sub-card {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-moss) 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.dash-sub-card::before {
  content: '??';
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 5rem;
  opacity: 0.12;
  pointer-events: none;
}

.dash-sub-plan {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.dash-sub-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.35rem;
}

.dash-sub-desc {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.dash-sub-renew {
  font-size: 0.72rem;
  opacity: 0.65;
  margin-bottom: 1rem;
}

.dash-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: white;
  color: var(--accent-green);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  border: none;
}

.dash-sub-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ---- Activity Feed ---- */
.dash-activity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dash-activity-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--section-divider);
  position: relative;
}

.dash-activity-item:last-child {
  border-bottom: none;
}

.dash-activity-dot {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.dash-activity-content {
  flex: 1;
}

.dash-activity-text {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.dash-activity-text strong {
  color: var(--text-primary);
}

.dash-activity-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ---- Planting Calendar ---- */
.dash-planting-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}

.dash-planting-month-label {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.3rem;
}

.dash-planting-row {
  display: contents;
}

.dash-planting-row-label {
  grid-column: 1 / -1;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dash-planting-cell {
  height: 18px;
  border-radius: 3px;
  background: var(--bg-secondary);
  transition: transform 0.2s;
  cursor: default;
}

.dash-planting-cell:hover {
  transform: scaleY(1.3);
}

.dash-planting-cell.sow {
  background: rgba(74, 140, 66, 0.35);
}

.dash-planting-cell.harvest {
  background: rgba(184, 150, 12, 0.45);
}

.dash-planting-cell.protect {
  background: rgba(60, 100, 180, 0.3);
}

.dash-planting-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.dash-planting-legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dash-planting-legend-dot {
  width: 12px;
  height: 10px;
  border-radius: 2px;
}

/* ---- Quick Search ---- */
.dash-search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  min-width: 220px;
  transition: all 0.22s;
}

.dash-search-bar:focus-within {
  border-color: var(--accent-green-pale);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.08);
}

.dash-search-bar input {
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
  width: 100%;
}

.dash-search-bar input::placeholder {
  color: var(--text-muted);
}

/* ---- Plant Collection (User) ---- */
.dash-plant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dash-plant-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dash-plant-card:hover {
  border-color: var(--accent-green-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.dash-plant-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(45, 90, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.dash-plant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-plant-body {
  padding: 0.65rem 0.8rem;
}

.dash-plant-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-plant-type {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.dash-plant-health {
  margin-top: 0.5rem;
}

/* ---- Notification popup ---- */
.dash-notif-panel {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  z-index: 200;
  overflow: hidden;
  animation: dashPanelIn 0.25s ease;
}

@keyframes dashPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dash-notif-header {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-notif-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--section-divider);
  transition: background 0.18s;
  cursor: pointer;
}

.dash-notif-item:hover {
  background: var(--bg-secondary);
}

.dash-notif-item:last-child {
  border-bottom: none;
}

.dash-notif-icon {
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.dash-notif-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.dash-notif-time {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ---- Overlay for mobile sidebar ---- */
.dash-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 89;
  backdrop-filter: blur(2px);
}

.dash-sidebar-overlay.active {
  display: block;
}

/* ---- Section title within panels ---- */
.dash-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---- Shared dashboard UI blocks ---- */
.dash-sub-card.dash-sub-card-split {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.dash-sub-card.dash-sub-card-compact {
  padding: 1.4rem 1.8rem;
}

.dash-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.78;
}

.dash-meta-note {
  font-size: 0.83rem;
  opacity: 0.76;
}

.dash-callout-center {
  text-align: center;
  opacity: 0.9;
}

.dash-callout-icon {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.dash-callout-meta {
  font-size: 0.72rem;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.dash-stack-sm {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dash-list-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.dash-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.dash-plan-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-plan-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
}

.dash-plan-card.dash-plan-gold {
  background: linear-gradient(135deg, rgba(184, 150, 12, 0.1), rgba(184, 150, 12, 0.05));
  border-color: rgba(184, 150, 12, 0.2);
}

.dash-plan-card.dash-plan-green {
  background: rgba(45, 90, 39, 0.06);
}

.dash-plan-card.dash-plan-blue {
  background: rgba(60, 100, 180, 0.06);
  border-color: rgba(60, 100, 180, 0.15);
}

.dash-plan-icon {
  font-size: 1.8rem;
}

.dash-plan-main {
  flex: 1;
}

.dash-plan-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.dash-plan-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dash-plan-count {
  text-align: center;
}

.dash-plan-count-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.dash-plan-count-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.dash-inline-heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.dash-info-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(45, 90, 39, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.dash-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.dash-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(45, 90, 39, 0.05);
}

.dash-benefit-item.highlight {
  background: rgba(184, 150, 12, 0.06);
  border-color: rgba(184, 150, 12, 0.15);
}

.dash-benefit-icon {
  font-size: 1.2rem;
}

.dash-benefit-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
}

.dash-benefit-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.dash-footer {
  padding: 1.2rem 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  background: var(--bg-card);
}

.dash-footer-links {
  display: flex;
  gap: 1.2rem;
}

.dash-footer-links a {
  color: var(--accent-green);
}

/* ---- Toast notification ---- */
.dash-toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.dash-toast {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-green);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-size: 0.83rem;
  color: var(--text-secondary);
  min-width: 220px;
  max-width: 320px;
  pointer-events: all;
  animation: toastIn 0.35s ease, toastOut 0.4s ease 3s forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateX(30px);
    pointer-events: none;
  }
}

/* ================================================================
   DASHBOARD RESPONSIVE � Tablet (? 1100px)
   ================================================================ */
@media (max-width: 1100px) {
  .dash-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-grid-70-30 {
    grid-template-columns: 1fr;
  }

  .dash-plant-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .dash-sidebar {
    transform: translateX(-100%);
    width: 260px !important;
    z-index: 91;
  }

  .dash-sidebar.mobile-open {
    transform: translateX(0);
  }

  .dash-main {
    margin-left: 0 !important;
  }

  .dash-mobile-menu-btn {
    display: flex;
  }

  .dash-grid-2 {
    grid-template-columns: 1fr;
  }

  .dash-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================
   DASHBOARD RESPONSIVE � Mobile (? 640px)
   ================================================================ */
@media (max-width: 640px) {
  .dash-content {
    padding: 1rem;
  }

  .dash-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .dash-stat-card {
    padding: 0.8rem 0.5rem;
  }

  .dash-stat-value {
    font-size: 1.2rem;
  }

  .dash-grid-3 {
    grid-template-columns: 1fr;
  }

  .dash-plant-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-search-bar {
    display: none;
  }

  .dash-topbar {
    padding: 0 0.5rem;
    gap: 0.5rem;
  }

  .dash-topbar-right {
    gap: 0.25rem;
  }

  .dash-topbar-btn {
    width: 32px;
    height: 32px;
  }

  /* Hide breadcrumbs, notifications, and non-essential quick links on mobile */
  .dash-breadcrumb,
  .dash-topbar-right>div,
  .dash-topbar-right a[href="index.html"],
  .dash-topbar-right a[href="shop.html"] {
    display: none !important;
  }

  .dash-page-title {
    font-size: 0.95rem;
  }

  .dash-logout-btn span:not([aria-hidden="true"]) {
    display: none;
  }

  .dash-logout-btn {
    padding: 0.4rem 0.5rem;
    font-size: 1.1rem;
  }

  .dash-footer {
    padding: 1rem 1.1rem;
  }

  .dash-footer-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .dash-planting-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .dash-planting-month-label:nth-child(n+7) {
    display: none;
  }
}

/* RTL dashboard support */
[dir="rtl"] .dash-sidebar {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid var(--border-color);
  box-shadow: -4px 0 24px rgba(45, 90, 39, 0.06);
}

[dir="rtl"] .dash-main {
  margin-left: 0;
  margin-right: 260px;
}

[dir="rtl"] .dash-shell.sidebar-collapsed .dash-main {
  margin-right: 68px;
  margin-left: 0;
}

[dir="rtl"] .dash-nav-link.active::before {
  left: auto;
  right: 0;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
}

[dir="rtl"] .dash-reminder-item {
  border-left: none;
  border-right: 3px solid var(--reminder-color, var(--accent-green));
}

[dir="rtl"] .dash-reminder-item:hover {
  transform: translateX(-3px);
}

@media (max-width: 1024px) {
  [dir="rtl"] .dash-sidebar {
    transform: translateX(100%);
  }

  [dir="rtl"] .dash-sidebar.mobile-open {
    transform: translateX(0);
  }

  [dir="rtl"] .dash-main {
    margin-right: 0 !important;
  }
}

/* ============================================================
   EXPLORE PAGE � Botanical Conservatory & Garden Center
   Appended to style.css
   ============================================================ */

/* ---- BREADCRUMB BAR (shared inner pages) ---- */
.exp-breadcrumb-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}

.exp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.exp-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.exp-breadcrumb a:hover {
  color: var(--accent-green);
}

.exp-breadcrumb span[aria-current] {
  color: var(--text-primary);
}

/* ================================================================
   EXPLORE MAIN PAGE
   ================================================================ */

/* ---- HERO ---- */
.exp-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/pexels-vo-nguy-n-terri-2150303799-31707932.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.exp-hero.loaded .exp-hero-bg {
  transform: scale(1);
}

.exp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 4, 0.25) 0%, rgba(5, 15, 4, 0.5) 55%, rgba(5, 15, 4, 0.82) 100%);
  z-index: 1;
}

.exp-hero .hero-content {
  z-index: 5;
}

/* Floating stat pills */
.exp-hero-stats {
  position: absolute;
  z-index: 6;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.exp-stat-pill {
  padding: 0.45rem 1.2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease both;
}

.exp-stat-pill--1 {
  animation-delay: 1s;
}

.exp-stat-pill--2 {
  animation-delay: 1.2s;
}

.exp-stat-pill--3 {
  animation-delay: 1.4s;
}

/* ---- QUICK NAV ---- */
.exp-quick-nav {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 65px;
  z-index: 50;
  box-shadow: var(--shadow-soft);
}

.exp-quick-nav-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.exp-quick-nav-inner::-webkit-scrollbar {
  display: none;
}

.exp-qnav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.exp-qnav-item:hover {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green-pale);
}

.exp-qnav-item.active-qnav {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green);
  font-weight: 600;
}

.exp-qnav-icon {
  font-size: 1rem;
}

/* ================================================================
   SECTION 1 � COLLECTIONS
   ================================================================ */
.exp-collections {
  background: var(--bg-primary);
  padding: 5rem 0;
}

/* Masonry-style grid */
.exp-coll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.exp-coll-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  transition: transform 0.5s var(--transition-bounce), box-shadow 0.4s ease;
  display: block;
  text-decoration: none;
}

.exp-coll-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.exp-coll-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.exp-coll-card--wide {
  grid-column: 2 / 4;
  aspect-ratio: 16/9;
}

.exp-coll-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.exp-coll-card:hover .exp-coll-img {
  transform: scale(1.08);
}

.exp-coll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 15, 4, 0.72) 100%);
  transition: all 0.5s ease;
}

.exp-coll-card:hover .exp-coll-overlay {
  background: linear-gradient(180deg, rgba(5, 15, 4, 0.1) 0%, rgba(45, 90, 39, 0.75) 100%);
}

.exp-coll-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.exp-coll-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  margin-bottom: 0.6rem;
}

.exp-coll-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.exp-coll-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  max-width: 340px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.1s;
}

.exp-coll-card:hover .exp-coll-desc {
  opacity: 1;
  transform: translateY(0);
}

.exp-coll-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.exp-coll-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: white;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease 0.15s;
}

.exp-coll-card:hover .exp-coll-btn {
  opacity: 1;
  transform: translateY(0);
  background: var(--accent-green);
  border-color: transparent;
}

/* Stats bar */
.exp-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  flex-wrap: wrap;
  gap: 0;
}

.exp-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 3rem;
}

.exp-stats-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--accent-green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.exp-stats-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 300;
  margin-left: 0.1rem;
}

.exp-stats-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.exp-stats-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

/* ================================================================
   SECTION 2 � RARE PLANTS
   ================================================================ */
.exp-rare {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.exp-rare-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(45, 90, 39, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(45, 90, 39, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Rare feature: 2-col layout */
.exp-rare-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.exp-rare-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.exp-rare-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.exp-rare-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.exp-rare-feature-img:hover img {
  transform: scale(1.04);
}

.exp-rare-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(180, 30, 30, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: white;
}

.exp-rare-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-green-pale);
  opacity: 0.4;
  animation: bloomPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.exp-rare-family {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.exp-rare-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.exp-rare-common {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.exp-rare-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.exp-rare-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.exp-rare-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, transform 0.3s;
}

.exp-rare-fact:hover {
  border-color: var(--accent-green-pale);
  transform: translateY(-2px);
}

.exp-rare-fact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.exp-rare-fact div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.exp-rare-fact strong {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
}

.exp-rare-fact span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Rare plant cards grid */
.exp-rare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.exp-rare-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
}

.exp-rare-card:hover,
.exp-rare-card:focus {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.exp-rare-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.exp-rare-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.exp-rare-card:hover .exp-rare-card-img img {
  transform: scale(1.08);
}

.exp-rare-status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exp-status-critical {
  background: rgba(180, 30, 30, 0.85);
  color: white;
}

.exp-status-vuln {
  background: rgba(184, 150, 12, 0.85);
  color: white;
}

.exp-status-near {
  background: rgba(74, 140, 66, 0.85);
  color: white;
}

.exp-rare-card-body {
  padding: 1.2rem;
}

.exp-rare-card-family {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.exp-rare-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0.25rem 0;
}

.exp-rare-card-sci {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.6rem;
}

.exp-rare-card-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.exp-rare-card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-green);
  transition: color 0.2s;
}

.exp-rare-card-link:hover {
  color: var(--accent-green-light);
}

.exp-rare-cta {
  text-align: center;
  margin-top: 3rem;
}

.exp-rare-cta p {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.exp-rare-cta strong {
  color: var(--text-primary);
}

/* ================================================================
   SECTION 3 � SEASONAL HIGHLIGHTS
   ================================================================ */
.exp-seasonal {
  background: var(--bg-primary);
  padding: 5rem 0;
}

.exp-season-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.exp-season-tabs::-webkit-scrollbar {
  display: none;
}

.exp-season-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-body);
  position: relative;
  bottom: -1px;
}

.exp-season-tab:hover {
  color: var(--accent-green);
}

.exp-season-tab.active {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green);
  font-weight: 600;
}

.exp-season-panel {
  display: none;
}

.exp-season-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.exp-season-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.exp-season-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.exp-season-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.exp-season-visual:hover img {
  transform: scale(1.04);
}

.exp-season-now-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--accent-green);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.exp-season-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.exp-season-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.exp-season-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.exp-season-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 0;
}

.exp-season-highlight span:first-child {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.exp-season-highlight div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.exp-season-highlight strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}

.exp-season-highlight span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ================================================================
   SECTION 4 � VIRTUAL TOUR
   ================================================================ */
.exp-tour {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.exp-tour-player {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.exp-tour-screen {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/7;
  background: var(--text-primary);
  box-shadow: var(--shadow-hover);
}

.exp-tour-preview-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.exp-tour-screen:hover .exp-tour-preview-img {
  transform: scale(1.02);
}

.exp-tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 4, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.exp-tour-play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.exp-tour-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: playPulse 2.5s ease-in-out infinite;
}

.exp-tour-play-btn:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: scale(1.1);
}

.exp-tour-play-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
}

.exp-tour-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.exp-tour-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.exp-tour-scenes {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  z-index: 5;
  overflow-x: auto;
  scrollbar-width: none;
}

.exp-tour-scenes::-webkit-scrollbar {
  display: none;
}

.exp-tour-scene {
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.exp-tour-scene:hover,
.exp-tour-scene.active-scene {
  background: var(--accent-green);
  border-color: transparent;
  color: white;
}

/* Sidebar */
.exp-tour-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  height: 100%;
}

.exp-tour-scene-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.exp-tour-scene-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.exp-tour-scene-spots {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.exp-tour-scene-spots li {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.exp-tour-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.exp-tour-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  background: var(--accent-green);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.exp-tour-action-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-1px);
}

.exp-tour-action-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.exp-tour-action-btn-outline:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

/* Tour features row */
.exp-tour-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.exp-tour-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: transform 0.3s, border-color 0.3s;
}

.exp-tour-feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green-pale);
}

.exp-tour-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.exp-tour-feature strong {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 600;
}

.exp-tour-feature span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ================================================================
   GUIDES TEASER
   ================================================================ */
.exp-guides {
  background: var(--bg-primary);
  padding: 5rem 0;
}

.exp-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.exp-guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
  text-decoration: none;
  display: block;
}

.exp-guide-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

.exp-guide-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.exp-guide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.exp-guide-card:hover .exp-guide-img img {
  transform: scale(1.06);
}

.exp-guide-body {
  padding: 1.5rem;
}

.exp-guide-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  margin-top: 0.5rem;
}

.exp-guide-excerpt {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.exp-guide-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}

/* ================================================================
   COLLECTION DETAIL PAGE
   ================================================================ */

/* Collection hero */
.coll-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.coll-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.coll-hero.loaded .coll-hero-bg {
  transform: scale(1);
}

.coll-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 4, 0.85) 0%, rgba(5, 15, 4, 0.35) 60%, rgba(5, 15, 4, 0.15) 100%);
}

.coll-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 1.5rem 3rem;
  width: 100%;
  max-width: 900px;
}

.coll-hero-content .hero-badge {
  animation: fadeInDown 0.8s ease 0.2s both;
}

.coll-hero-content .hero-title {
  animation: fadeInUp 0.8s ease 0.4s both;
}

.coll-hero-content .hero-subtitle {
  animation: fadeInUp 0.8s ease 0.6s both;
}

.coll-hero-content .hero-cta {
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* Meta row */
.coll-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.coll-hero-meta-item {
  text-align: center;
  padding: 0 2rem;
}

.coll-hero-meta-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  line-height: 1;
}

.coll-hero-meta-item span:last-child {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

.coll-hero-meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* Collection intro */
.coll-intro {
  background: var(--bg-primary);
  padding: 5rem 0;
}

.coll-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.coll-intro-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.coll-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.coll-intro-tag {
  padding: 0.3rem 0.9rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.coll-intro-tag:hover {
  background: var(--accent-green);
  color: white;
  border-color: transparent;
}

/* Gallery mosaic */
.coll-intro-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.coll-intro-img-main {
  grid-column: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.coll-intro-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.coll-intro-img-main:hover img {
  transform: scale(1.04);
}

.coll-intro-img-sm {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.coll-intro-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.coll-intro-img-sm:hover img {
  transform: scale(1.06);
}

/* Plant filter bar */
.coll-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.coll-filter-btn {
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.coll-filter-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.coll-filter-btn.active-filter {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

/* Plants grid */
.coll-plants-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.coll-plants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coll-plant-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
}

.coll-plant-card:hover,
.coll-plant-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.coll-plant-img-link {
  display: block;
}

.coll-plant-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-secondary);
}

.coll-plant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.coll-plant-card:hover .coll-plant-img img {
  transform: scale(1.08);
}

.coll-plant-rare-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent-moss);
  color: white;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.coll-plant-body {
  padding: 1.25rem;
}

.coll-plant-family {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  display: block;
  margin-bottom: 0.25rem;
}

.coll-plant-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.coll-plant-name a {
  color: inherit;
  transition: color 0.2s;
}

.coll-plant-name a:hover {
  color: var(--accent-green);
}

.coll-plant-sci {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.coll-plant-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.coll-plant-tags span {
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  background: rgba(74, 140, 66, 0.08);
  border-radius: var(--radius-full);
  color: var(--accent-green);
}

.coll-plant-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-green);
  transition: color 0.2s;
}

.coll-plant-link:hover {
  color: var(--accent-green-light);
}

/* Other collections row */
.coll-others {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.coll-others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coll-other-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  display: block;
  text-decoration: none;
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
}

.coll-other-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.coll-other-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 15, 4, 0.75) 100%);
  transition: all 0.4s ease;
}

.coll-other-card:hover .coll-other-overlay {
  background: linear-gradient(180deg, rgba(5, 15, 4, 0.1) 0%, rgba(45, 90, 39, 0.7) 100%);
}

.coll-other-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.coll-other-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.25rem;
}

.coll-other-content span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.coll-other-card:hover .coll-other-content span {
  color: rgba(255, 255, 255, 0.95);
}

/* ================================================================
   PLANT DETAIL PAGE
   ================================================================ */
.plant-hero {
  background: var(--bg-primary);
  padding: 3rem 0 5rem;
}

.plant-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Gallery */
.plant-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plant-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: var(--bg-secondary);
}

.plant-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease opacity 0.3s ease;
}

.plant-gallery-main:hover img {
  transform: scale(1.04);
}

.plant-gallery-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(74, 140, 66, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.plant-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.plant-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.plant-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0;
  background: none;
}

.plant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plant-thumb:hover {
  border-color: var(--accent-green-pale);
}

.plant-thumb-active {
  border-color: var(--accent-green);
}

/* Plant info panel */
.plant-info {
  padding-top: 0.5rem;
}

.plant-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plant-family-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.plant-status-badge {
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.plant-status-lc {
  background: rgba(74, 140, 66, 0.12);
  color: var(--accent-green);
}

.plant-status-cr {
  background: rgba(180, 30, 30, 0.1);
  color: #b41e1e;
}

.plant-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.plant-common-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.plant-scientific {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.plant-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Care grid quick */
.plant-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.plant-care-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.9rem 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.plant-care-item:hover {
  border-color: var(--accent-green-pale);
}

.plant-care-icon {
  font-size: 1.3rem;
}

.plant-care-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plant-care-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}

.plant-toxic {
  color: #c0392b;
}

.plant-info-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.plant-save-btn,
.plant-share-btn {
  padding: 0.7rem 1.2rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.plant-save-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.plant-share-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.plant-biome-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.plant-biome-tag a {
  color: var(--accent-green);
  transition: color 0.2s;
}

.plant-biome-tag a:hover {
  color: var(--accent-green-light);
}

/* Plant tabs */
.plant-tabs-section {
  background: var(--bg-secondary);
  padding: 0 0 5rem;
}

.plant-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--bg-card);
  padding: 0 2rem;
  position: sticky;
  top: 65px;
  z-index: 10;
  box-shadow: var(--shadow-soft);
}

.plant-tabs::-webkit-scrollbar {
  display: none;
}

.plant-tab-btn {
  padding: 1.1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
  font-family: var(--font-body);
  position: relative;
  bottom: -1px;
}

.plant-tab-btn:hover {
  color: var(--accent-green);
}

.plant-tab-btn.active-plant-tab {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green);
  font-weight: 600;
}

.plant-tab-panels {
  container: tabs / inline-size;
}

.plant-tab-panel {
  display: none;
  padding-top: 0;
}

.plant-tab-panel.active-plant-panel {
  display: block;
  animation: fadeIn 0.35s ease;
}

.plant-tab-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  padding: 0 2rem;
}

.plant-tab-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.plant-tab-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 1.8rem 0 0.75rem;
}

.plant-tab-text p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.plant-quote {
  border-left: 3px solid var(--accent-green);
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  background: var(--bg-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.plant-quote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.plant-quote footer {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Sidebar cards */
.plant-taxonomy-card,
.plant-at-botanica-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.plant-taxonomy-card h3,
.plant-at-botanica-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.plant-taxonomy-table {
  width: 100%;
  border-collapse: collapse;
}

.plant-taxonomy-table th,
.plant-taxonomy-table td {
  padding: 0.5rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border-color);
}

.plant-taxonomy-table th {
  color: var(--text-muted);
  font-weight: 500;
  text-align: left;
  width: 45%;
}

.plant-taxonomy-table td {
  color: var(--text-primary);
}

.plant-taxonomy-table tr:last-child th,
.plant-taxonomy-table tr:last-child td {
  border-bottom: none;
}

.plant-at-botanica-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.plant-botanica-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.plant-botanica-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.6rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.plant-botanica-stats strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plant-botanica-stats span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.plant-iucn-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Care guide full */
.plant-care-guide {
  padding: 0 2rem;
}

.plant-care-guide .plant-care-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.plant-care-guide .plant-care-section p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.plant-care-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.plant-care-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.plant-care-block:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green-pale);
  box-shadow: var(--shadow-card);
}

.plant-care-block-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.plant-care-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.plant-care-block p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.plant-care-tip {
  padding: 0.6rem 0.9rem;
  background: rgba(74, 140, 66, 0.07);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--accent-green);
  border-left: 2px solid var(--accent-green-pale);
}

/* Related */
.plant-related {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

/* ================================================================
   EXPLORE RESPONSIVE � Tablet (max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {

  /* Explore main */
  .exp-coll-grid {
    grid-template-columns: 1fr 1fr;
  }

  .exp-coll-card--large {
    grid-column: 1 / 3;
    aspect-ratio: 16/9;
  }

  .exp-coll-card--wide {
    grid-column: 1 / 3;
  }

  .exp-rare-grid {
    grid-template-columns: 1fr 1fr;
  }

  .exp-rare-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .exp-season-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .exp-tour-player {
    grid-template-columns: 1fr;
  }

  .exp-tour-screen {
    aspect-ratio: 16/8;
  }

  .exp-tour-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .exp-tour-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-guides-grid {
    grid-template-columns: 1fr 1fr;
  }

  .exp-stats-bar {
    gap: 1rem;
  }

  .exp-stats-item {
    padding: 0 1.5rem;
  }

  .exp-stats-divider {
    display: none;
  }

  .exp-stats-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
  }

  /* Collection page */
  .coll-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .coll-plants-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coll-others-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Plant page */
  .plant-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .plant-gallery-main {
    aspect-ratio: 4/3;
    max-width: 600px;
    margin: 0 auto;
  }

  .plant-tab-content {
    grid-template-columns: 1fr;
  }

  .plant-care-grid-full {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================
   EXPLORE RESPONSIVE � Mobile (max-width: 640px)
   ================================================================ */
@media (max-width: 640px) {

  /* Explore main */
  .exp-coll-grid {
    grid-template-columns: 1fr;
  }

  .exp-coll-card--large {
    grid-column: 1;
    aspect-ratio: 4/3;
  }

  .exp-coll-card--wide {
    grid-column: 1;
    aspect-ratio: 4/3;
  }

  .exp-coll-card {
    aspect-ratio: 4/3;
  }

  .exp-rare-grid {
    grid-template-columns: 1fr;
  }

  .exp-rare-facts {
    grid-template-columns: 1fr;
  }

  .exp-season-tab {
    padding: 0.8rem 1rem;
  }

  .exp-tour-player {
    grid-template-columns: 1fr;
  }

  .exp-tour-screen {
    aspect-ratio: 16/9;
  }

  .exp-tour-features {
    grid-template-columns: 1fr 1fr;
  }

  .exp-guides-grid {
    grid-template-columns: 1fr;
  }

  .exp-hero-stats {
    bottom: 5rem;
  }

  .exp-stats-bar {
    grid-template-columns: 1fr 1fr;
    display: grid;
    padding: 1.5rem;
    gap: 1rem;
  }

  .exp-stats-divider {
    display: none;
  }

  .exp-stats-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
  }

  /* Collection page */
  .coll-intro-grid {
    grid-template-columns: 1fr;
  }

  .coll-intro-gallery {
    grid-template-columns: 1fr;
  }

  .coll-intro-img-main {
    grid-column: 1;
  }

  .coll-plants-grid {
    grid-template-columns: 1fr;
  }

  .coll-others-grid {
    grid-template-columns: 1fr;
  }

  .coll-filter-bar {
    gap: 0.4rem;
  }

  .coll-hero-meta {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .coll-hero-meta-item {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
  }

  .coll-hero-meta-divider {
    display: none;
  }

  /* Plant page */
  .plant-hero-grid {
    grid-template-columns: 1fr;
  }

  .plant-care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plant-care-grid-full {
    grid-template-columns: 1fr;
  }

  .plant-info-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .plant-info-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .plant-tabs {
    padding: 0 0.5rem;
  }

  .plant-tab-btn {
    padding: 0.85rem 0.9rem;
  }

  .plant-tab-content {
    padding: 0 0;
  }
}

/* RTL support for explore pages */
[dir="rtl"] .exp-quick-nav-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .exp-breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .exp-coll-grid {
  direction: rtl;
}

[dir="rtl"] .exp-rare-feature {
  direction: rtl;
}

[dir="rtl"] .exp-season-layout {
  direction: rtl;
}

[dir="rtl"] .plant-quote {
  border-left: none;
  border-right: 3px solid var(--accent-green);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

[dir="rtl"] .plant-care-tip {
  border-left: none;
  border-right: 2px solid var(--accent-green-pale);
}

[dir="rtl"] .plant-hero-grid {
  direction: rtl;
}

/* ================================================================
   SHOP PAGE � E-COMMERCE
   ================================================================ */

/* ---- HERO ---- */
.shop-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-hero-bg {
  position: absolute;
  inset: -5%;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=85&auto=format&fit=crop') center/cover no-repeat;
  animation: shopHeroDrift 18s ease-in-out infinite alternate;
}

@keyframes shopHeroDrift {
  0% {
    transform: scale(1.06) translateY(0);
  }

  100% {
    transform: scale(1.06) translateY(-18px);
  }
}

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.shop-hero-content .hero-title {
  font-size: clamp(0.8rem, 5vw, 4rem);
}

.shop-hero-content .hero-subtitle {
  font-size: clamp(0.7rem, 1.5vw, 1.05rem);
}

/* ---- TRUST BAR ---- */
.shop-trust-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.shop-trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.shop-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.shop-trust-item span:first-child {
  font-size: 1.1rem;
}

.shop-trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* ================================================================
   SHOP LAYOUT � sidebar + product area
   ================================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  align-items: start;
}

/* ---- SIDEBAR ---- */
.shop-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-green-pale) transparent;
  box-shadow: var(--shadow-soft);
  transition: background 0.4s, border-color 0.4s;
}

.shop-sidebar::-webkit-scrollbar {
  width: 4px;
}

.shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--accent-green-pale);
  border-radius: 4px;
}

.shop-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.shop-sidebar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
}

.shop-sidebar-close {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.shop-sidebar-close:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.shop-filter-group {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-color);
}

.shop-filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.shop-filter-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Category list */
.shop-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shop-cat-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: left;
}

.shop-cat-btn:hover {
  background: var(--bg-secondary);
  color: var(--accent-green);
}

.shop-cat-btn.active {
  background: rgba(45, 90, 39, 0.08);
  color: var(--accent-green);
  border-color: var(--accent-green-pale);
  font-weight: 600;
}

[data-theme="dark"] .shop-cat-btn.active {
  background: rgba(74, 140, 66, 0.14);
}

.shop-cat-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.shop-cat-count {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  padding: 0.1rem 0.5rem;
  min-width: 22px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.shop-cat-btn.active .shop-cat-count {
  background: var(--accent-green);
  color: white;
}

/* Price range */
.shop-price-range {
  user-select: none;
}

.shop-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.shop-range-track {
  position: relative;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  margin: 0 8px;
}

.shop-range-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--accent-green);
  border-radius: 2px;
  pointer-events: none;
}

.shop-range-input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 16px);
  left: -8px;
  height: 4px;
  background: transparent;
  -webkit-appearance: none;
  pointer-events: none;
  outline: none;
}

.shop-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 2px solid var(--bg-card);
  box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
  cursor: pointer;
  pointer-events: all;
  transition: transform 0.2s;
}

.shop-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.shop-range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 2px solid var(--bg-card);
  cursor: pointer;
  pointer-events: all;
}

/* Checkboxes */
.shop-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.shop-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--text-secondary);
  user-select: none;
}

.shop-check-item:hover {
  color: var(--text-primary);
}

.shop-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.shop-check-box {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}

.shop-check-input:checked+.shop-check-box {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.shop-check-input:checked+.shop-check-box::after {
  content: '';
  width: 5px;
  height: 8px;
  border: 1.5px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.shop-check-input:focus+.shop-check-box {
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

.shop-clear-btn {
  width: 100%;
  padding: 0.6rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.shop-clear-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(45, 90, 39, 0.05);
}

/* ---- TOOLBAR ---- */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.shop-toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.shop-filter-toggle:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.shop-results-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.shop-results-count span {
  font-weight: 600;
  color: var(--text-primary);
}

.shop-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-search-icon {
  position: absolute;
  left: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
}

.shop-search-input {
  padding: 0.6rem 0.9rem 0.6rem 2.4rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
  width: 200px;
  transition: border-color 0.25s, box-shadow 0.25s, width 0.3s;
}

.shop-search-input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
  width: 240px;
}

.shop-search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.shop-sort-select {
  padding: 0.6rem 2rem 0.6rem 0.9rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a7a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
}

.shop-sort-select:focus {
  border-color: var(--accent-green);
}

.shop-view-toggle {
  display: flex;
  gap: 0.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.25rem;
}

.shop-view-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border: none;
}

.shop-view-btn:hover {
  color: var(--accent-green);
  background: rgba(45, 90, 39, 0.06);
}

.shop-view-btn.active {
  background: var(--accent-green);
  color: white;
}

/* Active filter chips */
.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  min-height: 0;
}

.shop-filter-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem 0.3rem 0.9rem;
  background: rgba(45, 90, 39, 0.08);
  border: 1px solid var(--accent-green-pale);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-green);
}

[data-theme="dark"] .shop-filter-chip {
  background: rgba(74, 140, 66, 0.14);
}

.shop-chip-remove {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-green);
  color: white;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.shop-chip-remove:hover {
  background: var(--accent-moss);
}

/* ---- PRODUCT GRID ---- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.shop-grid.list-view {
  grid-template-columns: 1fr;
}

/* --- PRODUCT CARD --- */
.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.38s var(--transition-bounce), box-shadow 0.38s ease, border-color 0.3s ease;
  cursor: pointer;
}

.shop-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

/* Card image */
.shop-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: var(--bg-secondary);
}

.shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shop-card:hover .shop-card-img {
  transform: scale(1.07);
}

/* Badges */
.shop-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.shop-badge-new {
  background: var(--accent-green);
  color: white;
}

.shop-badge-best {
  background: var(--accent-gold);
  color: white;
}

.shop-badge-limited {
  background: #e07840;
  color: white;
}

.shop-badge-rare {
  background: #7040b8;
  color: white;
}

.shop-badge-preorder {
  background: #3a7ab8;
  color: white;
}

.shop-badge-gift {
  background: #b83a7a;
  color: white;
}

/* Card hover actions */
.shop-card-actions {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.3s ease;
  z-index: 2;
}

.shop-card:hover .shop-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.shop-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-soft);
}

.shop-action-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
  transform: scale(1.1);
}

.shop-wishlist-btn.wishlisted {
  background: #ffe4ec;
  border-color: #f06080;
  color: #e04060;
}

/* Card body */
.shop-card-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
}

.shop-card-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.shop-cat-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(45, 90, 39, 0.1);
  color: var(--accent-green);
}

.shop-cat-outdoor {
  background: rgba(184, 150, 12, 0.12);
  color: var(--accent-gold);
}

.shop-cat-pots {
  background: rgba(120, 80, 40, 0.12);
  color: #7a5028;
}

.shop-cat-tools {
  background: rgba(60, 80, 120, 0.12);
  color: #3c5078;
}

.shop-cat-gifts {
  background: rgba(180, 60, 120, 0.12);
  color: #b43c78;
}

[data-theme="dark"] .shop-cat-pots {
  color: #c09060;
}

[data-theme="dark"] .shop-cat-tools {
  color: #7090c0;
}

[data-theme="dark"] .shop-cat-gifts {
  color: #d470a8;
}

.shop-care-tag {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: auto;
}

.shop-care-easy {
  background: rgba(76, 175, 125, 0.13);
  color: #3d8c6a;
}

.shop-care-moderate {
  background: rgba(184, 150, 12, 0.13);
  color: var(--accent-gold);
}

.shop-care-expert {
  background: rgba(224, 92, 92, 0.13);
  color: #c05050;
}

[data-theme="dark"] .shop-care-easy {
  color: #6cba9a;
}

[data-theme="dark"] .shop-care-moderate {
  color: var(--accent-gold-light);
}

[data-theme="dark"] .shop-care-expert {
  color: #e07070;
}

.shop-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.shop-card-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.shop-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.shop-stars {
  color: var(--accent-gold);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.shop-rating-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

.shop-rating-count {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.shop-price-wrap {
  display: flex;
  flex-direction: column;
}

.shop-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-green);
  line-height: 1;
}

.shop-price-old {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.shop-add-btn {
  position: relative;
  overflow: hidden;
  padding: 0.55rem 1rem;
  background: var(--accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.shop-add-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

/* Cart badge on nav */
.shop-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--accent-green);
  color: white;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.3s var(--transition-bounce);
}

.shop-cart-badge.bump {
  animation: cartBump 0.35s var(--transition-bounce);
}

@keyframes cartBump {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

/* LIST VIEW */
.shop-grid.list-view .shop-card {
  flex-direction: row;
}

.shop-grid.list-view .shop-card-img-wrap {
  width: 200px;
  flex-shrink: 0;
  aspect-ratio: auto;
  height: auto;
}

.shop-grid.list-view .shop-card-body {
  padding: 1.5rem;
}

.shop-grid.list-view .shop-card-name {
  font-size: 1.25rem;
}

.shop-grid.list-view .shop-card-sub {
  font-size: 0.82rem;
}

/* HIDDEN CARD */
.shop-card[hidden] {
  display: none !important;
}

/* EMPTY STATE */
.shop-empty {
  text-align: center;
  padding: 5rem 2rem;
}

.shop-empty[hidden] {
  display: none;
}

.shop-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.shop-empty-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.shop-empty-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.shop-empty-reset {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 2rem;
  background: var(--accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.shop-empty-reset:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
}

/* PAGINATION */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 3rem;
}

.shop-page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-page-btn:hover:not(:disabled) {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.shop-page-btn.active {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.shop-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ================================================================
   QUICK VIEW MODAL
   ================================================================ */
.shop-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.shop-modal[hidden] {
  display: none;
}

.shop-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 4, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.shop-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: shopModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

@keyframes shopModalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.shop-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.shop-modal-close:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.shop-modal-img-col {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.shop-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.shop-modal-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shop-modal-info-col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
}

.shop-modal-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop-modal-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.shop-modal-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.shop-modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.shop-modal-attrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.shop-modal-attr {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.shop-modal-attr strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.shop-modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-modal-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--accent-green);
  line-height: 1;
}

.shop-modal-avail {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(76, 175, 125, 0.12);
  color: #3d8c6a;
}

.shop-modal-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shop-modal-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
}

.shop-qty-btn {
  width: 38px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.shop-qty-btn:hover {
  background: var(--accent-green);
  color: white;
}

.shop-qty-input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
}

.shop-modal-add-btn {
  position: relative;
  overflow: hidden;
  flex: 1;
  padding: 0.85rem 1.5rem;
  background: var(--accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.shop-modal-add-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.35);
}

.shop-modal-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.shop-modal-guarantees span {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

/* ================================================================
   CART DRAWER
   ================================================================ */
.shop-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-modal) + 5);
}

.shop-cart-drawer[hidden] {
  display: none;
}

.shop-cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 4, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

/* ================================================================
   404 ERROR PAGE
   ================================================================ */

.error-page {
  position: relative;
  min-height: 100vh;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(172, 197, 160, 0.08) 100%);
  pointer-events: none;
}

.error-bg-decoration {
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-green-pale) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.error-particles {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  opacity: 0.03;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: var(--z-card);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* 404 Code Display */
.error-code-container {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.error-code-leaf {
  position: absolute;
  right: -20px;
  top: 20%;
  font-size: 4rem;
  animation: fadeInScale 0.8s ease 0.4s both, float 4s ease-in-out 2.2s infinite;
}

.error-code-leaf i {
  color: var(--accent-green);
  filter: drop-shadow(0 4px 15px rgba(45, 90, 39, 0.3));
}

/* Error Title */
.error-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.error-title em {
  font-style: italic;
  color: var(--accent-green);
}

/* Error Message */
.error-message {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Plant Visual */
.error-plant-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0;
  animation: fadeIn 0.8s ease 0.5s both;
}

.plant-container {
  position: relative;
  width: 120px;
  height: 150px;
}

.plant-pot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  box-shadow: 0 8px 30px rgba(184, 150, 12, 0.25);
}

.plant-pot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.1));
  border-radius: 50%;
}

.plant-stem {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 80px;
  background: linear-gradient(to top, var(--accent-green), var(--accent-green-light));
}

.plant-leaf {
  position: absolute;
  border-radius: 50% 0;
  background: var(--accent-green-light);
  animation-duration: 3s;
  animation-fill-mode: both;
}

.leaf-1 {
  width: 40px;
  height: 50px;
  bottom: 100px;
  left: 25%;
  transform: rotate(-25deg);
  animation-name: leafWave1;
}

.leaf-2 {
  width: 45px;
  height: 55px;
  bottom: 80px;
  right: 20%;
  transform: rotate(25deg) scaleX(-1);
  animation-name: leafWave2;
  animation-delay: 0.3s;
}

.leaf-3 {
  width: 35px;
  height: 45px;
  bottom: 50px;
  left: 35%;
  transform: rotate(-15deg);
  animation-name: leafWave1;
  animation-delay: 0.6s;
}

@keyframes leafWave1 {

  0%,
  100% {
    transform: rotate(-25deg) translateX(0);
  }

  50% {
    transform: rotate(-25deg) translateX(8px);
  }
}

@keyframes leafWave2 {

  0%,
  100% {
    transform: rotate(25deg) scaleX(-1) translateX(0);
  }

  50% {
    transform: rotate(25deg) scaleX(-1) translateX(-8px);
  }
}

/* Error Actions */
.error-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.error-actions .btn {
  font-size: 0.8rem;
  padding: 0.9rem 1.8rem;
  flex: 1;
  min-width: 140px;
}

/* Error Suggestions */
.error-suggestions {
  animation: fadeInUp 0.8s ease 0.7s both;
}

.suggestions-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.suggestions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
  list-style: none;
}

.suggestions-list li a {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.suggestions-list li a:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* ================================================================
   COMING SOON PAGE
   ================================================================ */

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coming-soon-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(45, 90, 39, 0.05) 100%);
  pointer-events: none;
}

.coming-soon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(45, 90, 39, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(184, 150, 12, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.coming-soon-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(45, 90, 39, 0.02) 0%, transparent 30%),
    radial-gradient(circle at 75% 75%, rgba(184, 150, 12, 0.02) 0%, transparent 30%);
  pointer-events: none;
}

.coming-soon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
}

.orb-2 {
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  animation-delay: 10s;
}

.coming-soon-content {
  position: relative;
  z-index: var(--z-card);
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(45, 90, 39, 0.1);
  border: 1px solid rgba(45, 90, 39, 0.2);
  border-radius: var(--radius-full);
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Coming Soon Title */
.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.coming-soon-title em {
  font-style: italic;
  color: var(--accent-green);
  display: inline-block;
}

/* Coming Soon Subtitle */
.coming-soon-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Growing Plant Visual */
.coming-soon-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem 0;
  animation: fadeIn 0.8s ease 0.3s both;
}

.growing-plant {
  position: relative;
  width: 150px;
  height: 180px;
}

.sprout {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 140px;
  background: linear-gradient(to top, var(--accent-green), var(--accent-green-light));
  border-radius: 2px;
}

.growth-stage-1,
.growth-stage-2,
.growth-stage-3 {
  position: absolute;
  left: 50%;
}

.growth-stage-1 {
  bottom: 80px;
  transform: translateX(-50%) rotate(-30deg);
  width: 50px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
  border-radius: 50% 0;
  opacity: 0;
  animation: growLeaf 1.5s ease-out forwards;
  animation-delay: 0s;
}

.growth-stage-2 {
  bottom: 100px;
  transform: translateX(-50%) rotate(30deg) scaleX(-1);
  width: 55px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
  border-radius: 50% 0;
  opacity: 0;
  animation: growLeaf 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

.growth-stage-3 {
  bottom: 120px;
  transform: translateX(-50%) rotate(-20deg);
  width: 50px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
  border-radius: 50% 0;
  opacity: 0;
  animation: growLeaf 1.5s ease-out forwards;
  animation-delay: 1s;
}

@keyframes growLeaf {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotateZ(90deg) scale(0);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) rotateZ(var(--rotation, 0deg)) scale(1);
  }
}

/* Countdown */
.coming-soon-countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
  max-width: 400px;
  margin: 2.5rem auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.countdown-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.2rem 0.8rem;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* Subscribe Section */
.coming-soon-subscribe {
  animation: fadeInUp 0.8s ease 0.5s both;
}

.subscribe-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.subscribe-form {
  display: flex;
  gap: 0.8rem;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.subscribe-input:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(45, 90, 39, 0.05);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.subscribe-input::placeholder {
  color: var(--text-muted);
}

.subscribe-btn {
  padding: 0.9rem 1.8rem;
  white-space: nowrap;
}

.subscribe-message {
  animation: fadeIn 0.5s ease;
}

/* Back Link */
.coming-soon-back {
  animation: fadeInUp 0.8s ease 0.6s both;
  margin-bottom: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  color: var(--accent-green);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(45, 90, 39, 0.1);
  transform: translateX(-4px);
}

/* Features Grid */
.coming-soon-features {
  animation: fadeInUp 0.8s ease 0.7s both;
}

.features-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.feature-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-hint:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-green);
  background: rgba(45, 90, 39, 0.02);
}

.feature-hint i {
  font-size: 1.8rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
}

.feature-hint:hover i {
  transform: scale(1.15);
}

.feature-hint span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

/* ================================================================
   RESPONSIVE DESIGN - TABLET (768px and below)
   ================================================================ */

@media (max-width: 768px) {

  .error-page,
  .coming-soon-page {
    padding: var(--space-md);
    min-height: auto;
  }

  .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-code-leaf {
    right: -15px;
    font-size: 2.5rem;
  }

  .error-title,
  .coming-soon-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .error-message,
  .coming-soon-subtitle {
    font-size: 0.9rem;
  }

  .error-actions {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .error-actions .btn {
    flex: 1;
    min-width: 130px;
    font-size: 0.75rem;
    padding: 0.8rem 1.5rem;
  }

  .coming-soon-countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 250px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 0.8rem;
  }

  .subscribe-input {
    width: 100%;
    min-width: auto;
  }

  .subscribe-btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coming-soon-orb {
    filter: blur(60px);
    opacity: 0.15;
  }

  .error-bg-decoration {
    width: 400px;
    height: 400px;
    right: -20%;
    top: -10%;
  }

  .error-particles {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: -20%;
  }
}

/* ================================================================
   RESPONSIVE DESIGN - MOBILE (640px and below)
   ================================================================ */

@media (max-width: 640px) {

  .error-page,
  .coming-soon-page {
    padding: var(--space-md) 1rem;
  }

  .error-code {
    font-size: clamp(3rem, 10vw, 6rem);
  }

  .error-code-leaf {
    right: -10px;
    top: 15%;
    font-size: 2rem;
  }

  .error-title,
  .coming-soon-title {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-bottom: 0.8rem;
  }

  .error-message,
  .coming-soon-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .error-plant-visual,
  .coming-soon-visual {
    height: 150px;
    margin: 1.5rem 0;
  }

  .plant-container {
    width: 100px;
    height: 120px;
  }

  .plant-leaf {
    animation-duration: 2.5s;
  }

  .growing-plant {
    width: 120px;
    height: 150px;
  }

  .error-actions {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .error-actions .btn {
    width: 100%;
    min-width: auto;
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
  }

  .suggestions-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .coming-soon-countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    max-width: 200px;
    margin: 1.5rem auto;
  }

  .countdown-item {
    padding: 0.8rem 0.5rem;
  }

  .countdown-number {
    font-size: 1.2rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  .subscribe-label {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .subscribe-form {
    max-width: 100%;
  }

  .subscribe-input {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .subscribe-btn {
    font-size: 0.75rem;
    padding: 0.8rem 1.5rem;
  }

  .coming-soon-back {
    margin-bottom: 1.5rem;
  }

  .back-link {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .features-title {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .feature-hint {
    padding: 0.8rem;
    gap: 0.5rem;
  }

  .feature-hint i {
    font-size: 1.4rem;
  }

  .feature-hint span {
    font-size: 0.75rem;
  }

  .error-bg-decoration {
    display: none;
  }

  .error-particles {
    width: 300px;
    height: 300px;
  }

  .coming-soon-orb {
    display: none;
  }
}

/* ================================================================
   RESPONSIVE DESIGN - EXTRA SMALL (480px and below)
   ================================================================ */

@media (max-width: 480px) {
  .error-code {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .error-code-leaf {
    font-size: 1.5rem;
    right: -5px;
  }

  .error-title,
  .coming-soon-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.6rem;
  }

  .error-message,
  .coming-soon-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .error-plant-visual,
  .coming-soon-visual {
    height: 120px;
    margin: 1rem 0;
  }

  .plant-container {
    width: 80px;
    height: 100px;
  }

  .error-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .error-actions .btn {
    font-size: 0.7rem;
    padding: 0.7rem 1.2rem;
  }

  .suggestions-title {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .suggestions-list {
    gap: 0.5rem;
  }

  .suggestions-list li a {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .coming-soon-countdown {
    max-width: 180px;
    margin: 1rem auto;
  }

  .subscribe-form {
    gap: 0.5rem;
  }

  .subscribe-input {
    padding: 0.7rem 0.9rem;
    font-size: 0.8rem;
  }

  .subscribe-btn {
    font-size: 0.7rem;
    padding: 0.7rem 1.2rem;
  }

  .features-grid {
    gap: 0.6rem;
  }

  .feature-hint {
    padding: 0.7rem;
  }

  .feature-hint i {
    font-size: 1.2rem;
  }
}

.shop-cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  animation: shopCartIn 0.35s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
}

@keyframes shopCartIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

[dir="rtl"] .shop-cart-panel {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--border-color);
  animation: shopCartInRTL 0.35s ease;
}

@keyframes shopCartInRTL {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.shop-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.shop-cart-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shop-cart-header-count {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

.shop-cart-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.shop-cart-close:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.shop-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop-cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.shop-cart-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.shop-cart-empty-sub {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.shop-cart-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  border: 1px solid var(--border-color);
}

.shop-cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.shop-cart-item-info {
  flex: 1;
  min-width: 0;
}

.shop-cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-cart-item-price {
  font-size: 0.82rem;
  color: var(--accent-green);
  font-weight: 500;
}

.shop-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.shop-cart-item-qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.shop-cart-item-qty-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

.shop-cart-item-qty-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 18px;
  text-align: center;
}

.shop-cart-item-remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}

.shop-cart-item-remove:hover {
  background: rgba(224, 92, 92, 0.12);
  color: #e05c5c;
}

.shop-cart-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.shop-cart-footer[hidden] {
  display: none;
}

.shop-cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.shop-cart-subtotal strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-green);
  font-weight: 500;
}

.shop-cart-shipping-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.4rem;
  background: rgba(45, 90, 39, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.shop-checkout-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem;
  background: var(--accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.shop-checkout-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.35);
}

.shop-continue-btn {
  width: 100%;
  padding: 0.7rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.shop-continue-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

/* ================================================================
   TOAST
   ================================================================ */
.shop-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  white-space: nowrap;
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shop-toast[hidden] {
  display: none;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* ================================================================
   RTL SUPPORT � SHOP PAGE
   ================================================================ */
[dir="rtl"] .shop-sidebar {
  direction: rtl;
}

[dir="rtl"] .shop-cat-btn {
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .shop-cat-count {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .shop-check-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .shop-badge {
  left: auto;
  right: 0.85rem;
}

[dir="rtl"] .shop-card-actions {
  right: auto;
  left: 0.85rem;
  transform: translateX(-12px);
}

[dir="rtl"] .shop-card:hover .shop-card-actions {
  transform: translateX(0);
}

[dir="rtl"] .shop-care-tag {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .shop-search-icon {
  left: auto;
  right: 0.85rem;
}

[dir="rtl"] .shop-search-input {
  padding-left: 0.9rem;
  padding-right: 2.4rem;
}

[dir="rtl"] .shop-toolbar-left {
  flex-direction: row-reverse;
}

[dir="rtl"] .shop-toolbar-right {
  flex-direction: row-reverse;
}

[dir="rtl"] .shop-trust-bar {
  direction: rtl;
}

[dir="rtl"] .shop-modal-img-col {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

[dir="rtl"] .shop-modal-close {
  right: auto;
  left: 1rem;
}

[dir="rtl"] .shop-modal-badges {
  left: auto;
  right: 1rem;
}

[dir="rtl"] .shop-grid.list-view .shop-card {
  flex-direction: row-reverse;
}

/* ================================================================
   DARK MODE ADJUSTMENTS
   ================================================================ */
[data-theme="dark"] .shop-sort-select {
  background-color: var(--bg-card);
  color: var(--text-secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a9a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

[data-theme="dark"] .shop-modal-panel {
  background: var(--bg-card);
}

[data-theme="dark"] .shop-range-input::-webkit-slider-thumb {
  border-color: var(--bg-card);
}

/* ================================================================
   SHOP � RESPONSIVE (Tablet ? 1100px)
   ================================================================ */
@media (max-width: 1100px) {
  .shop-layout {
    grid-template-columns: 220px 1fr;
    gap: 1.75rem;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   SHOP � RESPONSIVE (Tablet ? 900px)
   ================================================================ */
@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  /* Sidebar becomes a slide-over drawer */
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: calc(var(--z-nav) + 10);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    max-height: 100vh;
    transform: translateX(-110%);
    transition: transform 0.35s ease, box-shadow 0.35s;
    box-shadow: none;
    overflow-y: auto;
  }

  [dir="rtl"] .shop-sidebar {
    left: auto;
    right: 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(110%);
  }

  .shop-sidebar.open {
    transform: translateX(0);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.25);
  }

  [dir="rtl"] .shop-sidebar.open {
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  }

  .shop-sidebar-close {
    display: flex;
  }

  .shop-filter-toggle {
    display: flex;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .shop-trust-item {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .shop-search-input {
    width: 160px;
  }

  .shop-search-input:focus {
    width: 200px;
  }
}

/* ================================================================
   SHOP � RESPONSIVE (Mobile ? 640px)
   ================================================================ */
@media (max-width: 640px) {
  .shop-hero {
    height: 60vh;
    min-height: 300px;
  }

  .shop-trust-sep {
    display: none;
  }

  .shop-trust-grid {
    gap: 0.25rem;
  }

  .shop-trust-item {
    width: 50%;
    padding: 0.5rem;
    font-size: 0.72rem;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .shop-card-body {
    padding: 0.85rem;
  }

  .shop-card-name {
    font-size: 0.95rem;
  }

  .shop-card-sub {
    display: none;
  }

  .shop-price {
    font-size: 1.1rem;
  }

  .shop-add-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .shop-search-input {
    flex: 1;
    width: auto;
  }

  .shop-search-input:focus {
    width: auto;
  }

  .shop-modal-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    border-radius: var(--radius-md);
  }

  .shop-modal-img-col {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .shop-modal-img {
    min-height: 220px;
  }

  .shop-modal-info-col {
    padding: 1.25rem;
  }

  .shop-cart-panel {
    max-width: 100%;
  }

  .shop-grid.list-view .shop-card {
    flex-direction: column;
  }

  .shop-grid.list-view .shop-card-img-wrap {
    width: 100%;
    height: 200px;
  }

  .shop-layout {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 420px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   PRODUCT DETAIL PAGE � Single Product View
   ================================================================ */

/* ---- PRODUCT BREADCRUMB ---- */
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 1rem 0 0;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: var(--accent-green);
}

.product-breadcrumb span[aria-current="page"] {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---- PRODUCT HERO ---- */
.product-hero {
  background: var(--bg-primary);
  padding: 3rem 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ---- PRODUCT GALLERY ---- */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 120px;
}

.product-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-gallery:hover .product-main-image img {
  transform: scale(1.04);
}

.product-main-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-green);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.thumbnail {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-card);
}

.thumbnail:hover {
  border-color: var(--accent-green-pale);
}

.thumbnail.active {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px var(--bg-primary), 0 0 0 4px var(--accent-green);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.thumbnail:hover img {
  transform: scale(1.05);
}

/* ---- PRODUCT INFO ---- */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-header-left {
  flex: 1;
}

.product-top-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.product-rating-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-stars {
  font-size: 1.1rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.product-rating-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.3rem;
}

.product-rating-count a {
  color: var(--accent-green);
  cursor: pointer;
  transition: color 0.2s;
}

.product-rating-count a:hover {
  color: var(--accent-green-light);
}

/* Product features ---- */
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--accent-green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--accent-green);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Product description */
.product-description {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.product-description h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.product-description p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- PRODUCT ACTIONS ---- */
.product-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

/* Quantity selector */
.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--accent-green);
  color: white;
}

.qty-input {
  width: 60px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
}

.add-to-cart-btn {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 180px;
  padding: 1rem 2rem;
  background: var(--accent-green);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.35);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.wishlist-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--accent-green);
  border: 1.5px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s;
}

.wishlist-btn:hover {
  transform: scale(1.1);
  border-color: var(--accent-green);
}

.wishlist-btn.active {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

/* ---- TRUST BADGES ---- */
.product-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--accent-green);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Consolidated specs are moved to the PRODUCT DETAIL section below */

/* ---- CARE GUIDE SECTION ---- */
.care-guide {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.care-guide-header {
  margin-bottom: 2rem;
}

.care-guide-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.care-guide-intro {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.care-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.care-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-green-pale);
}

.care-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.care-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.care-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- REVIEWS SECTION ---- */
.product-reviews {
  margin-bottom: 3rem;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-primary);
}

.reviews-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.review-score {
  text-align: center;
}

.review-score-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-green);
  line-height: 1;
}

.review-score-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.review-score-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.review-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.bar-label {
  width: 60px;
  color: var(--text-muted);
  font-weight: 500;
}

.bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent-green);
  border-radius: var(--radius-full);
  transition: width 1.5s var(--transition-slow);
}

.bar-percent {
  width: 40px;
  text-align: right;
  color: var(--text-muted);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--accent-green-pale);
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.review-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.review-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.review-author-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-author-verified {
  font-size: 0.72rem;
  color: var(--accent-green);
}

.reviews-cta {
  text-align: center;
}

.reviews-show-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-show-all:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  transform: translateY(-2px);
}

/* ---- RELATED PRODUCTS ---- */
.related-products {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.related-header {
  margin-bottom: 2rem;
}

.related-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-primary);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s;
  text-decoration: none;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-green-pale);
}

.related-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
}

.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.related-card:hover .related-img img {
  transform: scale(1.08);
}

.related-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent-green);
  color: white;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.related-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.related-category {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green);
  font-weight: 600;
}

.related-title-card {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.related-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-green);
}

.related-quick-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--accent-green);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.related-quick-btn:hover {
  border-color: var(--accent-green);
  background: rgba(45, 90, 39, 0.06);
}

/* ================================================================
   PRODUCT DETAIL � RESPONSIVE (Tablet ? 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-gallery {
    position: static;
  }

  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .product-features {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   PRODUCT DETAIL � RESPONSIVE (Mobile ? 768px)
   ================================================================ */
@media (max-width: 768px) {
  .product-hero-grid {
    gap: 1.5rem;
  }

  .product-main-image {
    aspect-ratio: 4/5;
  }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-selector {
    width: 100%;
  }

  .add-to-cart-btn {
    width: 100%;
  }

  .wishlist-btn {
    width: 100%;
  }

  .care-guide {
    padding: 1.5rem;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-title {
    font-size: 1.8rem;
  }

  .reviews-stats {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================================
   PRODUCT DETAIL � RESPONSIVE (Small Mobile ? 480px)
   ================================================================ */
@media (max-width: 480px) {
  .product-hero {
    padding: 1.5rem 0;
  }

  .product-thumbnails {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .product-specs {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }

  .spec-label {
    width: 100%;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .care-grid {
    gap: 1rem;
  }

  .care-guide {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    gap: 1rem;
  }
}

/* RTL support for product detail */
[dir="rtl"] .product-hero-grid {
  direction: rtl;
}

[dir="rtl"] .product-breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .product-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .review-author {
  flex-direction: row-reverse;
}

[dir="rtl"] .related-footer {
  flex-direction: row-reverse;
}

[dir="rtl"] .reviews-stats {
  flex-direction: row-reverse;
}

[dir="rtl"] .review-bars {
  direction: rtl;
}

/* ================================================================
   SITE-WIDE ANIMATIONS & UTILITIES
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.img-reveal {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s var(--transition-slow), transform 1s var(--transition-slow);
}

.img-reveal.visible {
  opacity: 1;
  transform: scale(1);
}

.h2-title-line {
  display: block;
  overflow: hidden;
}

/* Animations delays (utility) */
.delay-1 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

/* Dashboard Specific Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slideInRight 0.5s ease forwards;
}

/* RTL support for base animations */
[dir="rtl"] .fade-up {
  transform: translateY(30px);
}

[dir="rtl"] .fade-up.visible {
  transform: translateY(0);
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.breadcrumb-bar {
  background: var(--bg-secondary);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent-green);
}

.breadcrumb span[aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}

.product-detail {
  padding: 2rem 0 6rem;
}

.product-detail .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 120px;
}

.product-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #e74c3c;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 5;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  cursor: pointer;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.3s;
  background: var(--bg-secondary);
}

.thumbnail:hover {
  border-color: var(--accent-green-pale);
  transform: translateY(-4px);
}

.thumbnail.active {
  border-color: var(--accent-green);
}

/* Info Section */
.product-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.product-category {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.product-subtitle {
  font-family: var(--font-accent);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #f1c40f;
  letter-spacing: 0.1em;
}

.rating-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.rating-link {
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.rating-link:hover {
  border-color: var(--accent-green);
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.price-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

.price-original {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  background: var(--accent-green);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.stock-status.in-stock {
  color: #27ae60;
}

.stock-status.low-stock {
  color: #f39c12;
}

.stock-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* Features Grid */
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--accent-green-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Description */
.product-description {
  margin-bottom: 3rem;
}

.product-description h3,
.product-specs h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.product-description p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Actions */
.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.qty-btn:hover {
  background: var(--bg-secondary);
}

.qty-input {
  width: 50px;
  height: 48px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  color: var(--text-primary);
}

.product-actions .btn-primary {
  flex: 2;
  height: 56px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: var(--radius-md);
}

.wishlist-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.wishlist-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.wishlist-btn.active {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

/* Trust Badges */
.product-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
  padding: 1.5rem;
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Specs Table */
.product-specs {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.product-specs h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  padding: 0;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--text-primary);
  width: 40%;
}

.spec-value {
  color: var(--text-secondary);
}

/* Care Guide */
.care-guide {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.care-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.care-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-green-pale);
}

.care-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.care-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.care-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Reviews */
.product-reviews {
  padding: 8rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-color);
}

.review-stars {
  color: #f1c40f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.reviews-action {
  text-align: center;
}

/* Related */
.related-products {
  padding-bottom: 8rem;
}

.related-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Responsive Product Detail */
@media (max-width: 1024px) {
  .product-detail .container {
    gap: 3rem;
  }

  .product-gallery {
    position: static;
  }

  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-detail .container {
    grid-template-columns: 1fr;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-selector {
    width: 100%;
  }
}

/* RTL support */
[dir="rtl"] .breadcrumb {
  direction: rtl;
}

[dir="rtl"] .product-detail .container {
  direction: rtl;
}

[dir="rtl"] .feature-item {
  direction: rtl;
}

[dir="rtl"] .product-trust {
  direction: rtl;
}

[dir="rtl"] .specs-table {
  direction: rtl;
}

[dir="rtl"] .care-grid {
  direction: rtl;
}

[dir="rtl"] .reviews-grid {
  direction: rtl;
}

/* ============================================================
   ICON SYSTEM (Lucide)
   ============================================================ */
.lucide {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2px;
  vertical-align: text-bottom;
  display: inline-block;
}

.brand-icon .lucide {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.icon-moss {
  color: #2d5a27;
}

.icon-forest {
  color: #4a8c42;
}

.icon-gold {
  color: #b8960c;
}

.icon-amber {
  color: #f39c12;
}

.icon-orange {
  color: #e67e22;
}

.icon-pink {
  color: #e91e63;
}

.icon-brown {
  color: #8d6e63;
}

.icon-slate {
  color: #34495e;
}

.icon-grey {
  color: #7f8c8d;
}

.icon-purple {
  color: #9b59b6;
}

.icon-red {
  color: #e74c3c;
}

.icon-crimson {
  color: #c0392b;
}

.icon-blue {
  color: #2980b9;
}

/* Dashboard specifics */
.sidebar .lucide {
  margin-right: 0.75rem;
}

/* Nav specifics */
.nav-btn .lucide {
  width: 1.1rem;
  height: 1.1rem;
}

.chevron.lucide {
  width: 0.8em;
  height: 0.8em;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideDown {
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.shop-card-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.shop-card-name a:hover {
  color: var(--accent-green);
}


/* ================================================================

/* ================================================================
   DASHBOARD FIXES � Mobile Optimization
   ================================================================ */
@media (max-width: 640px) {
  .dash-content {
    padding: 0.75rem;
  }

  .dash-stats-row {
    grid-template-columns: 1fr !important; /* Stack stats cards for all mobile widths */
    gap: 1rem;
  }

  .dash-stat-card {
    padding: 1.25rem;
    gap: 1.25rem;
    align-items: center; /* Center align items for single column look */
  }

  .dash-stat-body {
    text-align: left;
    width: 100%;
  }

  .dash-stat-value {
    font-size: 2rem;
    margin-bottom: 0.15rem;
  }

  .dash-stat-label {
    font-size: 0.85rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .dash-stat-change {
    display: inline-block;
    margin-top: 0.5rem;
  }

  .dash-panel {
    padding: 1.1rem;
  }

  .dash-panel-header {
    flex-direction: row; /* Keep header items side-by-side if possible */
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .dash-stat-value {
    font-size: 1.7rem;
  }
  
  .dash-stat-label {
    font-size: 0.78rem;
  }
}
