@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* --- Brand Identity System --- */
:root {
  --color-blue: #114b3e; /* Elegant deep pine forest green */
  --color-blue-light: #1d6b59; /* Medium forest green */
  --color-blue-rgb: 17, 75, 62;
  --color-orange: #c92a2a; /* Crimson holiday red */
  --color-orange-light: #e03131; /* Light holiday red */
  --color-orange-rgb: 201, 42, 42;
  --color-green: #d4af37; /* Champagne gold */
  --color-green-light: #f1d26b;
  --color-green-rgb: 212, 175, 55;
  
  --color-bg-dark: #FCFAF5; /* soft warm marigold cream background */
  --color-bg-card: #FFFFFF; /* clean white cards */
  --color-bg-card-hover: #FFFDF9; /* slightly warmer cream for hover */
  --color-bg-light: #FFFFFF;
  
  --color-text-primary: #1C1B1B; /* logo charcoal black for body text */
  --color-text-secondary: #4E4D53; /* medium gray for descriptions/subtitles */
  --color-text-muted: #7E7C85;
  --color-text-dark: #1C1B1B;
  
  --glass-bg: rgba(252, 250, 245, 0.85);
  --glass-border: rgba(17, 75, 62, 0.08);
  --glass-glow-blue: rgba(17, 75, 62, 0.06);
  --glass-glow-orange: rgba(201, 42, 42, 0.06);
  
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-soft: 0 10px 30px rgba(17, 75, 62, 0.05);
  --shadow-premium: 0 20px 40px rgba(17, 75, 62, 0.08);
  --shadow-glow-blue: 0 0 25px rgba(17, 75, 62, 0.25);
  --shadow-glow-orange: 0 0 25px rgba(201, 42, 42, 0.25);
  --shadow-glow-green: 0 0 25px rgba(212, 175, 55, 0.25);
}

/* --- Base Reset & Setup --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #E0DBD0;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: #3e3e4f;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }

/* --- Glow Highlights --- */
.bg-glow-blue {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glass-glow-blue) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-orange {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glass-glow-orange) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
  aspect-ratio: 405 / 561;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
  transform: scale(1.05) rotate(1deg);
}

.brand-text {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-tab {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-tab:hover {
  color: var(--color-blue);
  background: rgba(13, 92, 167, 0.05);
}

.nav-tab.active {
  color: #fff;
  background: var(--color-blue);
  box-shadow: var(--shadow-glow-blue);
}

.nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 3px;
  background-color: var(--color-orange);
  border-radius: 2px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- Layout Structure --- */
main {
  min-height: 100vh;
  padding-top: 112px; /* Offset for sticky header */
}

.section-container {
  display: none;
  animation: fadeIn 0.5s ease-in-out forwards;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem 2rem;
}

.section-container.active {
  display: block;
}

/* --- Shared Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-tagline {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.section-title span {
  background: linear-gradient(135deg, var(--color-blue-light) 0%, var(--color-orange) 50%, var(--color-green) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientBG 6s linear infinite;
}

.section-subtitle {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 1rem auto 0 auto;
  font-size: 1.05rem;
}

/* --- HOME TAB --- */

/* Hero Banner */
.hero-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0 5rem 0;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 92, 167, 0.12);
  border: 1px solid rgba(13, 92, 167, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue-light);
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--color-orange);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span.grad {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-orange), var(--color-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--color-blue);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
  background: var(--color-blue-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 92, 167, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

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

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Hero Showcase Frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle-backdrop {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 92, 167, 0.2), rgba(255, 130, 0, 0.2));
  filter: blur(20px);
  animation: spin-slow 20s linear infinite;
  z-index: 1;
}

.hero-main-card {
  width: 420px;
  height: 460px;
  border-radius: var(--border-radius-lg);
  background: var(--color-bg-card);
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
  transition: var(--transition-smooth);
}

.hero-main-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(13, 92, 167, 0.35);
}

/* 2-Photo Authentic Showroom Collage Grid */
.hero-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
  height: 100%;
  background: #0f172a;
}

.collage-item {
  position: relative;
  overflow: hidden;
  background: #1e293b;
  height: 100%;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.collage-item:hover img {
  transform: scale(1.09);
}

.collage-pill {
  position: absolute;
  bottom: 8px;
  left: 6px;
  right: 6px;
  background: rgba(11, 25, 44, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.collage-pill i {
  color: var(--color-orange-light);
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .hero-main-card {
    width: 100%;
    max-width: 360px;
    height: 400px;
    transform: none;
  }
}

.hero-glass-floating {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}

.hero-glass-floating i {
  color: var(--color-orange);
  font-size: 1.5rem;
}

.hero-glass-floating h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-glass-floating p {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 5rem;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--color-bg-card-hover);
  box-shadow: var(--shadow-soft);
  border-color: rgba(13, 92, 167, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background: rgba(13, 92, 167, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--color-blue-light);
}

.feature-card:hover .feature-icon {
  background: var(--color-blue);
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Category Slider/Promo */
.promo-banner {
  margin-top: 6rem;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(9, 62, 114, 0.90) 0%, rgba(17, 75, 62, 0.92) 100%), url('images/showroom_entrance_walkway.jpg');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  padding: 3.5rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-premium);
}

.promo-inner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.promo-vertical-photo {
  flex: 0 0 280px;
  max-width: 280px;
  height: 380px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  background: #0f172a;
}

.promo-vertical-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.promo-vertical-photo:hover img {
  transform: scale(1.06);
}

.promo-dual-photos {
  flex: 0 0 350px;
  max-width: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 380px;
}

.promo-photo-card {
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  background: #0f172a;
}

.promo-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.promo-photo-card:hover img {
  transform: scale(1.08);
}

.promo-photo-badge {
  position: absolute;
  bottom: 10px;
  left: 6px;
  right: 6px;
  background: rgba(9, 30, 66, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.promo-content {
  flex: 1 1 420px;
  max-width: 650px;
  margin: 0;
  z-index: 10;
  position: relative;
}

.promo-title {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.promo-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
}

/* --- ABOUT US TAB --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about-visual {
  position: relative;
}

.about-img-box {
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--glass-border);
}

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

.about-badge-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--color-orange);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-glow-orange);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.about-badge-card h2 {
  font-size: 2rem;
  font-weight: 900;
}

.about-badge-card p {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* --- GALLERY TAB --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--color-text-secondary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-primary);
}

.filter-btn.active {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
  box-shadow: var(--shadow-glow-orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(151, 215, 0, 0.3);
  box-shadow: var(--shadow-soft);
}

.gallery-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover .gallery-img-box img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-btn {
  background: var(--color-orange);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.gallery-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-tag {
  color: var(--color-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.gallery-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.gallery-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.gallery-price {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-text-primary);
}

.gallery-price span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.gallery-stock-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(17, 75, 62, 0.9);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 2;
}

.gallery-inquire-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 18px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  text-decoration: none;
}

.gallery-inquire-btn:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #0d6e63 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: #ffffff !important;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.header-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #e2e8f0;
}

.hero-trust-item strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .header-phone-btn {
    display: none;
  }
  .hero-trust-bar {
    gap: 1rem;
  }
}

/* --- BLOG TAB --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 92, 167, 0.3);
}

.blog-img-box {
  height: 220px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.08);
}

.blog-info {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-card h3 a:hover {
  color: var(--color-blue-light);
}

.blog-excerpt {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.blog-readmore {
  color: var(--color-blue-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.blog-readmore:hover {
  color: var(--color-blue);
  transform: translateX(4px);
}

/* --- CONTACT TAB --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 130, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.4rem;
  color: var(--color-orange);
}

.contact-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-details p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-details a:hover {
  color: var(--color-blue-light);
}

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

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

.social-icon-btn.fb:hover { background: #1877F2; border-color: #1877F2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); }
.social-icon-btn.ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); border-color: transparent; box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4); }
.social-icon-btn.yt:hover { background: #FF0000; border-color: #FF0000; box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4); }
.social-icon-btn.wa:hover { background: #25D366; border-color: #25D366; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

.map-wrapper {
  margin-top: 2rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 250px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Form */
.contact-form-panel {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.contact-form-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(151, 215, 0, 0.1) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid #D5D5DC;
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(13, 92, 167, 0.15);
}

select.form-control option {
  background-color: #ffffff;
  color: var(--color-text-primary);
}

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

/* --- FOOTER --- */
footer {
  background: #093E72; /* rich brand dark blue */
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.footer-brand p {
  color: #E2E8F0;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-orange-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #E2E8F0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact p {
  color: #E2E8F0;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--color-orange-light);
  margin-top: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* --- ABOUT & PHILOSOPHY SECTION --- */
.about-philosophy-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.philosophy-card {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 25px;
  font-family: var(--font-title);
  font-size: 8rem;
  color: var(--color-blue);
  opacity: 0.05;
  line-height: 1;
}

.philosophy-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.philosophy-highlight {
  font-weight: 700;
  color: var(--color-orange);
}

.brand-story-column h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.brand-story-column p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1.2rem;
}

.classification-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.classification-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-primary);
}

.classification-list i {
  color: var(--color-blue);
  margin-top: 4px;
  font-size: 1rem;
}

/* --- SHOWROOM VIDEO SECTION --- */
.showroom-video-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.showroom-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.video-card {
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 9 / 16; /* Portrait reels style */
  max-height: 540px;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(13, 92, 167, 0.15);
}

.video-wrapper {
  flex-grow: 1;
  position: relative;
  background: #000;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  color: #FFFFFF;
  z-index: 2;
  pointer-events: none;
}

.video-info-overlay h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #FFFFFF;
}

.video-info-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-philosophy-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .showroom-video-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    max-width: 420px;
  }
  
  .about-img-box {
    height: 380px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.8rem 1.5rem;
  }
  
  .menu-btn {
    display: block;
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  nav.mobile-active {
    display: flex;
  }
  
  .nav-tab {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  
  .nav-tab.active::after {
    display: none;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .promo-banner {
    padding: 2.5rem 1.5rem;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
}

/* --- Floating WhatsApp Chat Bubble --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.6);
  color: white;
}

/* --- Floating Instagram Chat Bubble --- */
.instagram-float {
  position: fixed;
  bottom: 102px;
  right: 30px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aec 90%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(214, 36, 159, 0.6);
  color: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .instagram-float {
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* --- Snowflake Canvas --- */
#snowfall-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
}

/* --- Interactive Christmas Tree Decorator --- */
.decorator-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tree-preview-box {
  background: radial-gradient(circle, rgba(17, 75, 62, 0.25) 0%, transparent 70%);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}

.tree-wrapper-inner {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 400;
}

.tree-base {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(17, 75, 62, 0.3));
}

.tree-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tree-layer.active {
  opacity: 1;
}

#layer-star {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 400'%3E%3Cpath d='M10,25 Q160,50 310,25' fill='none' stroke='%232b8a3e' stroke-width='4'/%3E%3Cpath d='M40,30 C35,50 45,80 40,90 C45,80 55,50 50,30 Z' fill='%232b8a3e'/%3E%3Cpath d='M100,35 C95,55 105,85 100,95 C105,85 115,55 110,35 Z' fill='%232b8a3e'/%3E%3Cpath d='M160,38 C155,58 165,88 160,98 C165,88 175,58 170,38 Z' fill='%232b8a3e'/%3E%3Cpath d='M220,35 C215,55 225,85 220,95 C225,85 235,55 230,35 Z' fill='%232b8a3e'/%3E%3Cpath d='M280,30 C275,50 285,80 280,90 C285,80 295,50 290,30 Z' fill='%232b8a3e'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

#layer-jasmine {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 400'%3E%3Cpath d='M20,60 Q160,120 300,60' fill='none' stroke='%23FF8200' stroke-width='6' stroke-dasharray='8 6' stroke-linecap='round' filter='drop-shadow(0 2px 4px rgba(0,0,0,0.2))'/%3E%3Cpath d='M40,120 Q160,190 280,120' fill='none' stroke='%23FF8200' stroke-width='6' stroke-dasharray='8 6' stroke-linecap='round' filter='drop-shadow(0 2px 4px rgba(0,0,0,0.2))'/%3E%3Cpath d='M30,80 Q160,140 290,80' fill='none' stroke='%23FAF8F5' stroke-width='4' stroke-dasharray='1 8' stroke-linecap='round' filter='drop-shadow(0 1px 3px rgba(255,255,255,0.6))'/%3E%3Cpath d='M50,140 Q160,210 270,140' fill='none' stroke='%23FAF8F5' stroke-width='4' stroke-dasharray='1 8' stroke-linecap='round' filter='drop-shadow(0 1px 3px rgba(255,255,255,0.6))'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

#layer-bells {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 400'%3E%3Cg fill='%23d4af37' filter='drop-shadow(0 2px 4px rgba(0,0,0,0.3))'%3E%3Cline x1='160' y1='25' x2='160' y2='150' stroke='%23FF8200' stroke-width='2' stroke-dasharray='4 4'/%3E%3Cpath d='M155,150 L165,150 L163,162 L157,162 Z'/%3E%3Ccircle cx='160' cy='166' r='2'/%3E%3Cline x1='90' y1='25' x2='90' y2='200' stroke='%23FF8200' stroke-width='2' stroke-dasharray='4 4'/%3E%3Cpath d='M85,200 L95,200 L93,212 L87,212 Z'/%3E%3Ccircle cx='90' cy='216' r='2'/%3E%3Cline x1='230' y1='25' x2='230' y2='200' stroke='%23FF8200' stroke-width='2' stroke-dasharray='4 4'/%3E%3Cpath d='M225,200 L235,200 L233,212 L227,212 Z'/%3E%3Ccircle cx='230' cy='216' r='2'/%3E%3Cline x1='40' y1='25' x2='40' y2='260' stroke='%23FF8200' stroke-width='2' stroke-dasharray='4 4'/%3E%3Cpath d='M35,260 L45,260 L43,272 L37,272 Z'/%3E%3Ccircle cx='40' cy='276' r='2'/%3E%3Cline x1='280' y1='25' x2='280' y2='260' stroke='%23FF8200' stroke-width='2' stroke-dasharray='4 4'/%3E%3Cpath d='M275,260 L285,260 L283,272 L277,272 Z'/%3E%3Ccircle cx='280' cy='276' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
}

#layer-baubles {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 400'%3E%3Cg filter='drop-shadow(0 2px 4px rgba(0,0,0,0.3))'%3E%3Cline x1='120' y1='25' x2='120' y2='240' stroke='%232b8a3e' stroke-width='1.5'/%3E%3Cpath d='M110,240 C110,225 130,225 130,240 Z' fill='%23ef4444'/%3E%3Cline x1='120' y1='240' x2='120' y2='255' stroke='%23d4af37' stroke-width='2' stroke-dasharray='2 3'/%3E%3Ccircle cx='120' cy='258' r='3' fill='%23d4af37'/%3E%3Cline x1='200' y1='25' x2='200' y2='240' stroke='%232b8a3e' stroke-width='1.5'/%3E%3Cpath d='M190,240 C190,225 210,225 210,240 Z' fill='%23ef4444'/%3E%3Cline x1='200' y1='240' x2='200' y2='255' stroke='%23d4af37' stroke-width='2' stroke-dasharray='2 3'/%3E%3Ccircle cx='200' cy='258' r='3' fill='%23d4af37'/%3E%3Cline x1='60' y1='25' x2='60' y2='170' stroke='%232b8a3e' stroke-width='1.5'/%3E%3Cpath d='M50,170 C50,155 70,155 70,170 Z' fill='%23FF8200'/%3E%3Cline x1='60' y1='170' x2='60' y2='185' stroke='%23d4af37' stroke-width='2' stroke-dasharray='2 3'/%3E%3Ccircle cx='60' cy='188' r='3' fill='%23d4af37'/%3E%3Cline x1='260' y1='25' x2='260' y2='170' stroke='%232b8a3e' stroke-width='1.5'/%3E%3Cpath d='M250,170 C250,155 270,155 270,170 Z' fill='%23FF8200'/%3E%3Cline x1='260' y1='170' x2='260' y2='185' stroke='%23d4af37' stroke-width='2' stroke-dasharray='2 3'/%3E%3Ccircle cx='260' cy='188' r='3' fill='%23d4af37'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
}

#layer-lights {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 400'%3E%3Cg fill='%23f1d26b'%3E%3Ccircle cx='155' cy='115' r='3'/%3E%3Ccircle cx='145' cy='150' r='3'/%3E%3Ccircle cx='170' cy='150' r='3'/%3E%3Ccircle cx='135' cy='185' r='3'/%3E%3Ccircle cx='155' cy='185' r='3'/%3E%3Ccircle cx='175' cy='185' r='3'/%3E%3Ccircle cx='125' cy='230' r='3.5'/%3E%3Ccircle cx='145' cy='230' r='3.5'/%3E%3Ccircle cx='165' cy='230' r='3.5'/%3E%3Ccircle cx='185' cy='230' r='3.5'/%3E%3Ccircle cx='115' cy='300' r='4'/%3E%3Ccircle cx='135' cy='300' r='4'/%3E%3Ccircle cx='155' cy='300' r='4'/%3E%3Ccircle cx='175' cy='300' r='4'/%3E%3Ccircle cx='195' cy='300' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  animation: fairyBlink 1.5s ease-in-out infinite alternate;
}

@keyframes fairyBlink {
  0% { opacity: 0.4; filter: drop-shadow(0 0 2px #f1d26b); }
  100% { opacity: 1; filter: drop-shadow(0 0 8px #f1d26b); }
}

.tree-controls-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--glass-border);
  padding-left: 3rem;
}

.tree-controls-box h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--color-blue);
}

.tree-controls-box p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.control-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.control-item:hover {
  background: var(--color-bg-card-hover);
  transform: translateX(6px);
  border-color: rgba(17, 75, 62, 0.3);
  box-shadow: var(--shadow-soft);
}

.control-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--color-blue);
  cursor: pointer;
  accent-color: var(--color-blue);
  margin-top: 2px;
  pointer-events: none;
}

.control-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.decorator-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.decorator-title i {
  color: var(--color-orange);
}

.shop-card-real {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-card-real:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}
.shop-card-real img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-card-real:hover img {
  transform: scale(1.05);
}

.festival-card-home {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.festival-card-home:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}
.festival-card-home img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.festival-card-home:hover img {
  transform: scale(1.06);
}

