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

/* ===== CSS CUSTOM PROPERTIES (from Tailwind @theme) ===== */
:root {
  --color-background: #050505;
  --color-foreground: #FAF8F5;
  --color-primary: #050505;
  --color-secondary: #FAF8F5;
  --color-gold: #C9A96E;
  --color-gold-light: #D4B87A;
  --color-gold-dark: #A88B52;
  --color-beige: #D4C5A9;
  --color-stone: #8A8A8A;
  --color-stone-dark: #3A3A3A;
  --color-stone-light: #B8B8B8;
  --color-cream: #F5F0E8;
  --color-charcoal: #1A1A1A;
  --color-dark-card: #0D0D0D;
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-border: rgba(255, 255, 255, 0.1);
  --color-glass-hover: rgba(255, 255, 255, 0.08);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-primary);
}

body {
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Italian-style luxury tile pattern overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Crect x='0' y='0' width='80' height='80' fill='none' stroke='%23FAF8F5' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23C9A96E' stroke-width='1.2' opacity='0.4'/%3E%3Ccircle cx='40' cy='40' r='12' fill='none' stroke='%23FAF8F5' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M40 20 L44 36 L60 40 L44 44 L40 60 L36 44 L20 40 L36 36 Z' fill='none' stroke='%23C9A96E' stroke-width='1.5' opacity='0.5'/%3E%3Cpath d='M0 10 Q10 10 10 0' fill='none' stroke='%23FAF8F5' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M80 10 Q70 10 70 0' fill='none' stroke='%23FAF8F5' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M80 70 Q70 70 70 80' fill='none' stroke='%23FAF8F5' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M0 70 Q10 70 10 80' fill='none' stroke='%23FAF8F5' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

::selection {
  background: var(--color-gold);
  color: var(--color-primary);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.text-editorial {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.text-editorial-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.text-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.text-label-lg {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ===== LUXURY BUTTON STYLES ===== */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.25rem, 3vw, 2.25rem);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.btn-luxury:hover::before {
  left: 0;
}

.btn-luxury:hover {
  color: var(--color-primary);
  transition: color 0.2s ease 0.2s;
}

.btn-luxury span,
.btn-luxury svg {
  position: relative;
  z-index: 1;
}

.btn-luxury-filled {
  background: var(--color-gold);
  color: var(--color-primary);
  border: 1px solid var(--color-gold);
}

.btn-luxury-filled::before {
  background: var(--color-primary);
}

.btn-luxury-filled:hover {
  color: var(--color-gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-stone-light);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.btn-ghost:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-4px);
}

.glass-elevated {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== TILE IMAGE PLACEHOLDER GRADIENTS ===== */
.tile-gradient-1 { background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d0 50%, #f0ebe3 100%); }
.tile-gradient-2 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%); }
.tile-gradient-3 { background: linear-gradient(135deg, #3a2a1a 0%, #4d3b28 50%, #3f2e1e 100%); }
.tile-gradient-4 { background: linear-gradient(135deg, #f8f5f0 0%, #ece7de 50%, #f0ebe3 100%); }
.tile-gradient-5 { background: linear-gradient(135deg, #6a6a6a 0%, #808080 50%, #727272 100%); }
.tile-gradient-6 { background: linear-gradient(135deg, #d4c5a9 0%, #c4b595 50%, #d0c1a3 100%); }
.tile-gradient-7 { background: linear-gradient(135deg, #8B7355 0%, #9B8365 50%, #8F7759 100%); }
.tile-gradient-8 { background: linear-gradient(135deg, #c9a96e 0%, #d4b87a 50%, #cdb072 100%); }
.tile-gradient-9 { background: linear-gradient(135deg, #c4a97d 0%, #b39b6e 50%, #c0a579 100%); }
.tile-gradient-10 { background: linear-gradient(135deg, #eee8df 0%, #e0d8cd 50%, #e8e1d7 100%); }
.tile-gradient-11 { background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0f0f0f 100%); }
.tile-gradient-12 { background: linear-gradient(135deg, #e8dcc8 0%, #ddd0b8 50%, #e3d6c2 100%); }
.tile-gradient-13 { background: linear-gradient(135deg, #8B5E3C 0%, #9B6E4C 50%, #8F6240 100%); }
.tile-gradient-14 { background: linear-gradient(135deg, #e8eef0 0%, #dce5e8 50%, #e3eaed 100%); }
.tile-gradient-15 { background: linear-gradient(135deg, #d4a5a5 0%, #c49595 50%, #cf9f9f 100%); }
.tile-gradient-16 { background: linear-gradient(135deg, #a0a0a0 0%, #b0b0b0 50%, #a8a8a8 100%); }
.tile-gradient-17 { background: linear-gradient(135deg, #8B6914 0%, #9B7924 50%, #8F6D18 100%); }
.tile-gradient-18 { background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 50%, #404040 100%); }

/* ===== ROOM VISUALIZATION PLACEHOLDER ===== */
.room-placeholder {
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 30%, #1e1e1e 70%, #252525 100%);
  position: relative;
  overflow: hidden;
}

.room-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.02) 49%, rgba(255,255,255,0.02) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.02) 49%, rgba(255,255,255,0.02) 51%, transparent 51%);
  background-size: 60px 60px;
}

/* ===== ANIMATIONS ===== */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 169, 110, 0); }
}

@keyframes reveal-up {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes line-expand {
  0% { width: 0; }
  100% { width: 80px; }
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25%); }
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

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

@keyframes scale-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes nav-slide-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

/* Scroll reveal animation classes */
@keyframes scrollRevealUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scrollRevealScale {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes heroTextReveal {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

@keyframes lineScaleX {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes whatsappPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.animate-pulse-gold {
  animation: pulse-gold 2s ease-in-out infinite;
}

.animate-scale-breathe {
  animation: scale-breathe 20s ease-in-out infinite;
}

/* Scroll-triggered reveal system */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
.delay-900 { transition-delay: 0.9s; }
.delay-1000 { transition-delay: 1.0s; }
.delay-1100 { transition-delay: 1.1s; }

/* ===== DIVIDERS ===== */
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.divider-vertical {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ===== UTILITY CLASSES ===== */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-beige) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-gradient-gold {
  border-image: linear-gradient(135deg, var(--color-gold), var(--color-beige)) 1;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-luxury {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media (min-width: 768px) {
  .section-luxury {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ===== LAYOUT UTILITIES ===== */
.container-main {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}

@media (min-width: 768px) {
  .container-main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .container-main {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.flex-1 { flex: 1; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
  background: transparent;
  animation: nav-slide-down 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.navbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .navbar-inner { padding: 0 3rem; }
}

@media (min-width: 1024px) {
  .navbar-inner { padding: 0 4rem; }
}

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

.nav-logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  transition: all 0.5s ease;
}

.nav-logo:hover .nav-logo-icon {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.1);
}

.nav-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .nav-logo-text { display: block; }
}

.nav-logo-brand {
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  font-family: var(--font-body);
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}

.nav-logo-sub {
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  color: var(--color-stone-light);
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
}

.nav-link-text {
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.4s ease;
  color: var(--color-stone-light);
}

.nav-link:hover .nav-link-text,
.nav-link.active .nav-link-text {
  color: var(--color-gold);
}

.nav-link .nav-link-text.active {
  color: var(--color-gold);
}

.nav-link:hover .nav-link-text:not(.active) {
  color: var(--color-secondary);
}

.nav-link-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s ease;
  width: 0;
}

.nav-link:hover .nav-link-line,
.nav-link.active .nav-link-line {
  width: 100%;
}

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

.nav-wishlist-btn {
  position: relative;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
}

.nav-wishlist-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-stone-light);
  transition: color 0.4s ease;
}

.nav-wishlist-btn:hover svg {
  color: var(--color-gold);
}

.wishlist-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 1rem;
  height: 1rem;
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  animation: whatsappPop 0.3s ease;
}

.nav-whatsapp {
  display: none;
}

@media (min-width: 640px) {
  .nav-whatsapp { display: block; }
}

.nav-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-stone-light);
  transition: color 0.4s ease;
}

.nav-whatsapp:hover svg {
  color: #4ade80;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 1.75rem;
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger-line {
  width: 100%;
  height: 1px;
  background: var(--color-stone-light);
  transition: all 0.4s ease;
  transform-origin: center;
}

.hamburger:hover .hamburger-line {
  background: var(--color-gold);
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-glass-border);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 10;
}

.mobile-menu-link {
  font-size: 2.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-secondary);
  transition: color 0.4s ease, transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.3s; }

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--color-gold);
}

.mobile-menu-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7); /* Dim lighting */
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 1.5rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (min-width: 768px) {
  .hero-content { padding: 6rem 3rem 8rem; }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 6rem 4rem 8rem;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: scrollRevealUp 0.7s ease 0.3s forwards;
}

.hero-eyebrow-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0.625rem 1.25rem;
  display: inline-block;
}

.hero-title-wrapper {
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 9.5vw, 9.5rem);
  color: var(--color-secondary);
  transform: translateY(100%);
  animation: heroTextReveal 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s forwards;
}

.hero-title-wrapper:nth-child(2) {
  margin-bottom: 2.5rem;
}

.hero-title-wrapper:nth-child(2) .hero-title {
  animation-delay: 0.65s;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-size: 1.25rem;
  color: var(--color-stone-light);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(25px);
  animation: scrollRevealUp 0.7s ease 0.9s forwards;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.5rem); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: scrollRevealUp 0.6s ease 1.1s forwards;
}

.hero-right {
  display: none;
  grid-column: span 5;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-right { display: block; }
}

.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 28rem;
  margin-left: auto;
  opacity: 0;
  transform: scale(0.95);
  animation: scrollRevealScale 1.2s ease 0.7s forwards;
}

.hero-image-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-glass-border);
  overflow: hidden;
}

.hero-image-zoom {
  width: 100%;
  height: 100%;
  animation: scale-breathe 20s ease-in-out infinite;
}

.hero-image-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.1), transparent);
}

.hero-image-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, rgba(5, 5, 5, 0.3));
}

.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1.5rem;
  width: 13rem;
  animation: hero-float 5s ease-in-out infinite;
}

.hero-float-card .text-label { margin-bottom: 0.5rem; }

.hero-float-card-title {
  font-size: 1rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.hero-float-card-size {
  font-size: 0.75rem;
  color: var(--color-stone);
}

.hero-float-card-line {
  width: 2rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.4);
  margin-top: 0.75rem;
}

.hero-accent-vline {
  position: absolute;
  right: -2rem;
  top: 4rem;
  width: 1px;
  height: 10rem;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.5), transparent);
}

.hero-accent-hline {
  position: absolute;
  right: -2rem;
  top: 4rem;
  width: 1.25rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.5);
}

.hero-corner-accent {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  border-right: 1px solid rgba(201, 169, 110, 0.3);
}

.hero-bottom-bar {
  margin-top: 4rem;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 169, 110, 0.4), rgba(201, 169, 110, 0.1), transparent);
  transform-origin: left;
  transform: scaleX(0);
  animation: lineScaleX 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1.3s forwards;
}

@media (min-width: 1024px) {
  .hero-bottom-bar { margin-top: 5rem; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0;
  animation: fade-in 0.5s ease 2s forwards;
}

.hero-scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: scroll-bob 2.5s ease infinite;
}

.hero-scroll-text {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(138, 138, 138, 0.6);
}

.hero-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.4), transparent);
}

/* ===== MARQUEE BANNER ===== */
.marquee-banner {
  position: relative;
  padding: 2rem 0;
  background: var(--color-dark-card);
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.4em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ===== FEATURED TILES SECTION ===== */
.featured-section {
  position: relative;
}

.featured-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .featured-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.featured-header .btn-luxury {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .featured-header .btn-luxury { align-self: auto; }
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

/* Featured tile card */
.featured-tile {
  position: relative;
}

.featured-tile-link {
  display: block;
}

.featured-tile-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-dark-card);
  border: 1px solid var(--color-glass-border);
}

.featured-tile-image-wrapper img,
.featured-tile-image-wrapper .tile-gradient-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}

.featured-tile:hover .featured-tile-image-wrapper img,
.featured-tile:hover .featured-tile-image-wrapper .tile-gradient-fill {
  transform: scale(1.1);
}

.featured-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.2), transparent);
}

.featured-tile-gold-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.7s ease;
}

.featured-tile:hover .featured-tile-gold-line {
  width: 100%;
}

.featured-tile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .featured-tile-info { padding: 1.25rem; }
}

.featured-tile-collection {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.featured-tile-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
  transition: color 0.5s ease;
}

.featured-tile:hover .featured-tile-name {
  color: var(--color-gold);
}

.featured-tile-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(138, 138, 138, 0.7);
}

.featured-tile-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(138, 138, 138, 0.3);
}

.featured-tile-price {
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s ease;
}

.featured-tile:hover .featured-tile-price {
  opacity: 1;
  transform: translateY(0);
}

/* Wishlist heart button on cards */
.tile-heart-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-glass-border);
  transition: all 0.4s ease;
  z-index: 10;
}

.tile-heart-btn:hover {
  border-color: rgba(201, 169, 110, 0.5);
}

.tile-heart-btn svg {
  width: 1rem;
  height: 1rem;
  transition: color 0.3s ease;
  color: var(--color-stone-light);
  fill: none;
}

.tile-heart-btn.wishlisted svg {
  color: #f87171;
  fill: #f87171;
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

.collections-vert-accent {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.04), transparent);
  display: none;
}

@media (min-width: 1024px) {
  .collections-vert-accent { display: block; }
}

.collections-header {
  text-align: center;
  margin-bottom: 5rem;
}

.collections-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.25rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

@media (min-width: 1024px) {
  .collections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}

.collection-card {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 16rem;
}

@media (min-width: 1024px) {
  .collection-card { width: auto; }
}

.collection-card-link {
  display: block;
}

.collection-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-dark-card);
  border: 1px solid var(--color-glass-border);
  margin-bottom: 1.25rem;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease-out;
  opacity: 0.6;
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.1);
  opacity: 0.9;
}

.collection-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.4), transparent);
}

.collection-card-goldline {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.7s ease;
}

.collection-card:hover .collection-card-goldline {
  width: 100%;
}

.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.collection-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  transition: color 0.5s ease;
}

.collection-card:hover .collection-card-name {
  color: var(--color-gold);
}

.collection-card-line {
  width: 1.5rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.5);
  transition: width 0.7s ease;
}

.collection-card:hover .collection-card-line {
  width: 3.5rem;
}

.collection-card-corner {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-right: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.5s ease;
}

.collection-card:hover .collection-card-corner {
  border-color: rgba(201, 169, 110, 0.5);
}

.collection-card-desc {
  font-size: 0.75rem;
  color: var(--color-stone);
  line-height: 1.625;
}

/* ===== ROOM INSPIRATION ===== */
.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .room-grid { gap: 1.25rem; }
}

.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border: 1px solid var(--color-glass-border);
}

.room-card-bg {
  position: absolute;
  inset: 0;
}

.room-card-gradient {
  position: absolute;
  inset: 0;
}

.room-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201,169,110,0.3) 35px, rgba(201,169,110,0.3) 36px);
}

.room-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

@media (min-width: 768px) {
  .room-card-content { padding: 2.5rem; }
}

.room-card-inner {
  transform: translateY(12px);
  transition: transform 0.6s ease;
}

.room-card:hover .room-card-inner {
  transform: translateY(0);
}

.room-card-accent {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.7);
  display: block;
  margin-bottom: 0.75rem;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  transition: color 0.5s ease;
}

@media (min-width: 768px) {
  .room-card-title { font-size: 2.25rem; }
}

.room-card:hover .room-card-title {
  color: var(--color-gold);
}

.room-card-subtitle {
  font-size: 0.875rem;
  color: rgba(184, 184, 184, 0.8);
  opacity: 0;
  transition: all 0.5s ease 0.1s;
  max-width: 24rem;
}

.room-card:hover .room-card-subtitle {
  opacity: 1;
}

.room-card-corner {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-right: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.6s ease;
}

.room-card:hover .room-card-corner {
  border-color: rgba(201, 169, 110, 0.5);
  width: 3.5rem;
  height: 3.5rem;
}

.room-card-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.7s ease;
}

.room-card:hover .room-card-bottom-line {
  width: 100%;
}

/* Room gradient colors */
.room-gradient-living { background: linear-gradient(to bottom right, rgba(120, 53, 15, 0.8), rgba(41, 37, 36, 0.6), rgba(5, 5, 5, 0.9)); }
.room-gradient-kitchen { background: linear-gradient(to bottom right, rgba(6, 78, 59, 0.6), rgba(41, 37, 36, 0.5), rgba(5, 5, 5, 0.9)); }
.room-gradient-bathroom { background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.6), rgba(41, 37, 36, 0.5), rgba(5, 5, 5, 0.9)); }
.room-gradient-bedroom { background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.5), rgba(41, 37, 36, 0.5), rgba(5, 5, 5, 0.9)); }

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--color-dark-card);
  border-top: 1px solid var(--color-glass-border);
  position: relative;
  overflow: hidden;
}

.why-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.015);
  filter: blur(200px);
}

.why-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 5rem;
}

.why-header-line {
  height: 1px;
  background: rgba(201, 169, 110, 0.4);
  margin: 2rem auto 0;
  width: 0;
  transition: width 0.8s ease;
}

.why-header-line.revealed {
  width: 80px;
}

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

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  background: rgba(5, 5, 5, 0.4);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease;
}

@media (min-width: 1024px) {
  .why-card { padding: 1.75rem; }
}

.why-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
}

.why-card-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3.75rem;
  font-family: var(--font-heading);
  color: rgba(58, 58, 58, 0.1);
  user-select: none;
  transition: color 0.5s ease;
}

.why-card:hover .why-card-number {
  color: rgba(201, 169, 110, 0.07);
}

.why-card-inner {
  position: relative;
  z-index: 10;
}

.why-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.25);
  margin-bottom: 1.75rem;
  transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.1);
}

.why-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gold);
}

.why-card-title {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--color-foreground);
  transition: color 0.4s ease;
}

.why-card:hover .why-card-title {
  color: var(--color-gold);
}

.why-card-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  font-family: var(--font-body);
  line-height: 1.625;
}

.why-card-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.6s ease;
}

.why-card:hover .why-card-bottom-line {
  width: 100%;
}

/* ===== CUSTOMER EXPERIENCE ===== */
.testimonials-section {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-glass-border);
}

.testimonials-bg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.015);
  filter: blur(200px);
}

.testimonials-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .testimonials-inner { padding: 0 3rem; }
}

.testimonials-label {
  display: block;
  margin-bottom: 3rem;
}

.testimonials-quote-icon {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-family: var(--font-heading);
  color: rgba(201, 169, 110, 0.2);
  user-select: none;
  line-height: 1;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .testimonials-quote-icon { font-size: 3.75rem; }
}

.testimonials-carousel {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .testimonials-carousel { height: 220px; }
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-slide.exiting {
  opacity: 0;
  transform: translateY(-30px);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-family: var(--font-accent);
  font-style: italic;
  line-height: 1.625;
  color: var(--color-beige);
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonial-quote { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .testimonial-quote { font-size: clamp(1.25rem, 3vw, 2rem); }
}

.testimonial-divider {
  width: 2.5rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.4);
  margin: 0 auto 1.25rem;
}

.testimonial-author {
  font-size: 0.875rem;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  color: var(--color-foreground);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .testimonial-author { font-size: 1rem; }
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-stone);
  margin-top: 0.5rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
}

.testimonial-dot {
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
}

.testimonial-dot-line {
  height: 1px;
  transition: all 0.6s ease;
  width: 1.25rem;
  background: var(--color-stone-dark);
}

.testimonial-dot:hover .testimonial-dot-line {
  background: var(--color-stone);
}

.testimonial-dot.active .testimonial-dot-line {
  width: 3.5rem;
  background: var(--color-gold);
}

/* ===== SHOWROOM SECTION ===== */
.showroom-section {
  background: var(--color-dark-card);
  border-top: 1px solid var(--color-glass-border);
  position: relative;
  overflow: hidden;
}

.showroom-bg-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.015);
  filter: blur(180px);
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .showroom-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.showroom-info-text {
  color: var(--color-stone);
  font-family: var(--font-body);
  font-size: 0.875rem;
  max-width: 32rem;
  margin-bottom: 3rem;
}

.showroom-info-text p {
  line-height: 1.625;
}

.showroom-details {
  border-top: 1px solid var(--color-glass-border);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .showroom-details { grid-template-columns: repeat(2, 1fr); }
}

.showroom-details h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.showroom-details p {
  color: var(--color-stone);
  line-height: 1.625;
}

.showroom-map-wrapper {
  position: relative;
}

.showroom-map-corner-tl {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  border-left: 1px solid rgba(201, 169, 110, 0.3);
  z-index: 10;
}

.showroom-map-corner-br {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  border-right: 1px solid rgba(201, 169, 110, 0.3);
  z-index: 10;
}

.showroom-map-frame {
  width: 100%;
  height: 500px;
  border: 1px solid var(--color-glass-border);
  position: relative;
  overflow: hidden;
}

.showroom-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) grayscale(80%);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-glass-border);
  position: relative;
  overflow: hidden;
}

.footer-bg-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.015);
  filter: blur(150px);
  pointer-events: none;
}

.footer-top {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .footer-top { padding: 5rem 3rem; }
}

@media (min-width: 1024px) {
  .footer-top { padding: 7rem 4rem; }
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 4fr 2fr 2fr 3fr;
    gap: 2rem;
  }
}

.footer-brand {
  padding-right: 2.5rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-brand-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.footer-brand-name {
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}

.footer-brand-sub {
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  color: var(--color-stone-light);
  text-transform: uppercase;
}

.footer-brand-desc {
  color: var(--color-stone-light);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 24rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-stone);
  transition: all 0.4s ease;
}

.footer-social-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.footer-social-link.whatsapp:hover {
  color: #4ade80;
  border-color: #4ade80;
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-column h4 {
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-glass-border);
  padding-bottom: 0.75rem;
  display: inline-block;
}

.footer-link {
  display: block;
  color: var(--color-stone);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  width: fit-content;
  margin-bottom: 1rem;
}

.footer-link:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.footer-contact-link {
  display: block;
  color: var(--color-stone);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  margin-bottom: 1rem;
}

.footer-contact-link:hover {
  color: var(--color-secondary);
}

.footer-directions {
  color: var(--color-stone);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-directions:hover {
  color: var(--color-gold);
}

.footer-directions-line {
  width: 1rem;
  height: 1px;
  background: var(--color-gold);
}

.footer-showroom p {
  color: var(--color-stone);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.footer-hours-box {
  font-size: 0.875rem;
  background: rgba(5, 5, 5, 0.3);
  border: 1px solid var(--color-glass-border);
  padding: 1.25rem;
}

.footer-hours-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-stone-light);
  margin-bottom: 0.5rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  color: var(--color-stone);
  margin-bottom: 0.25rem;
}

.footer-hours-row .time { color: var(--color-secondary); }
.footer-hours-row .closed {
  color: rgba(201, 169, 110, 0.8);
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid var(--color-glass-border);
  background: rgba(5, 5, 5, 0.4);
}

.footer-bottom-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; }
}

@media (min-width: 768px) {
  .footer-bottom-inner { padding: 1.5rem 3rem; }
}

@media (min-width: 1024px) {
  .footer-bottom-inner { padding: 1.5rem 4rem; }
}

.footer-copyright {
  color: var(--color-stone-light);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-tagline {
  color: rgba(138, 138, 138, 0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  animation: whatsappPop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s both, pulse-gold 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #4ade80;
  transform: scale(1.1);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  animation: whatsappPop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.5s both;
}

.chatbot-toggle.closed {
  background: var(--color-gold);
  color: var(--color-primary);
}

.chatbot-toggle.closed:hover {
  background: var(--color-gold-light);
}

.chatbot-toggle.open {
  background: var(--color-stone-dark);
  color: var(--color-secondary);
}

.chatbot-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 50;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  visibility: hidden;
  transition: all 0.3s ease;
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.chatbot-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-glass-border);
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar span {
  color: var(--color-gold);
  font-size: 0.875rem;
  font-family: var(--font-heading);
}

.chatbot-header-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.chatbot-header-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.chatbot-status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

.chatbot-status-text {
  font-size: 10px;
  color: var(--color-stone);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
}

.chat-message {
  display: flex;
  opacity: 0;
  transform: translateY(10px);
  animation: scrollRevealUp 0.3s ease forwards;
}

.chat-message.user { justify-content: flex-end; }
.chat-message.bot { justify-content: flex-start; }

.chat-bubble {
  max-width: 85%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  white-space: pre-line;
}

.chat-bubble.user {
  background: rgba(201, 169, 110, 0.2);
  color: var(--color-secondary);
  border-radius: 1rem 1rem 0.25rem 1rem;
}

.chat-bubble.bot {
  background: var(--color-glass);
  color: var(--color-stone-light);
  border-radius: 1rem 1rem 1rem 0.25rem;
  border: 1px solid var(--color-glass-border);
}

.chat-bubble.bot strong {
  color: var(--color-gold);
  font-weight: 600;
}

.chat-bubble.bot a {
  color: var(--color-gold);
  text-decoration: underline;
}

.chat-bubble.bot a:hover {
  color: var(--color-gold-light);
}

.typing-indicator {
  display: flex;
  justify-content: flex-start;
}

.typing-dots {
  background: var(--color-glass);
  color: var(--color-stone-light);
  border-radius: 1rem 1rem 1rem 0.25rem;
  border: 1px solid var(--color-glass-border);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.typing-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(201, 169, 110, 0.6);
  border-radius: 50%;
  animation: bounce 1s ease infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

.chatbot-quick-actions {
  padding: 0 1.25rem 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-action-btn {
  font-size: 11px;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-glass-border);
  color: var(--color-stone);
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: transparent;
}

.quick-action-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.chatbot-input-form {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  background: var(--color-glass);
  color: var(--color-secondary);
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--color-glass-border);
  outline: none;
  transition: border-color 0.3s ease;
  font-family: var(--font-body);
}

.chatbot-input::placeholder {
  color: rgba(138, 138, 138, 0.5);
}

.chatbot-input:focus {
  border-color: var(--color-gold);
}

.chatbot-send-btn {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 50%;
  border: none;
  transition: background 0.3s ease;
}

.chatbot-send-btn:disabled {
  opacity: 0.3;
}

.chatbot-send-btn:hover:not(:disabled) {
  background: var(--color-gold-light);
}

.chatbot-send-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Chatbot Direct Contact Buttons */
.chatbot-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.625rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-glass-border);
  color: var(--color-secondary);
  transition: all 0.3s ease;
  background: transparent;
  text-decoration: none;
}

.chatbot-contact-btn svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 1.5;
}

.chatbot-contact-btn.call-btn {
  border-color: rgba(201, 169, 110, 0.4);
  color: var(--color-gold);
}

.chatbot-contact-btn.call-btn:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--color-gold);
}

.chatbot-contact-btn.wa-btn {
  border-color: rgba(74, 222, 128, 0.4);
  color: #4ade80;
}

.chatbot-contact-btn.wa-btn:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: #4ade80;
}

/* ===== TILE CARD (Catalog + Wishlist) ===== */
.tile-card {
  position: relative;
}

.tile-card-link {
  display: block;
}

.tile-card-image {
  position: relative;
  overflow: hidden;
  background: var(--color-dark-card);
  border: 1px solid var(--color-glass-border);
  aspect-ratio: 1/1;
}

.tile-card-image img,
.tile-card-image .tile-gradient-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}

.tile-card:hover .tile-card-image img,
.tile-card:hover .tile-card-image .tile-gradient-fill {
  transform: scale(1.1);
}

.tile-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.3), transparent);
  opacity: 0.6;
  transition: opacity 0.7s ease;
}

.tile-card:hover .tile-card-hover-overlay {
  opacity: 1;
}

.tile-card-gold-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.7s ease;
}

.tile-card:hover .tile-card-gold-line {
  width: 100%;
}

.tile-card-bottom-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.5s ease;
}

@media (min-width: 1024px) {
  .tile-card-bottom-info { padding: 1.25rem; }
}

.tile-card:hover .tile-card-bottom-info {
  transform: translateY(0);
  opacity: 1;
}

.tile-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tile-card-meta-collection {
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.tile-card-meta-sep {
  color: rgba(138, 138, 138, 0.3);
}

.tile-card-meta-material {
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-stone-light);
}

.tile-card-meta-details {
  font-size: 0.75rem;
  color: var(--color-stone);
  letter-spacing: 0.05em;
}

.tile-card-category-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-stone-light);
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--color-glass-border);
  transition: border-color 0.4s ease;
}

.tile-card:hover .tile-card-category-badge {
  border-color: rgba(201, 169, 110, 0.3);
}

.tile-card-info {
  margin-top: 1.25rem;
  padding: 0 0.25rem;
}

.tile-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-secondary);
  transition: color 0.5s ease;
}

.tile-card:hover .tile-card-name {
  color: var(--color-gold);
}

.tile-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.375rem;
}

.tile-card-finish {
  font-size: 11px;
  color: var(--color-stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tile-card-price {
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 500;
}

/* ===== CATALOG PAGE ===== */
.catalog-page {
  min-height: 100vh;
  background: var(--color-primary);
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.catalog-bg-glow {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 100%;
  background: rgba(201, 169, 110, 0.02);
  filter: blur(150px);
  pointer-events: none;
}

.catalog-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}

.catalog-header h1 {
  margin-bottom: 1rem;
}

.catalog-header-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  font-family: var(--font-body);
  line-height: 1.625;
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
  .catalog-header-desc { font-size: 1rem; }
}

.catalog-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-glass-border);
  margin-bottom: 4rem;
  position: relative;
}

@media (min-width: 1024px) {
  .catalog-filters { flex-direction: row; }
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 100%;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}

@media (min-width: 1024px) {
  .catalog-tabs {
    justify-content: flex-start;
    gap: 2rem;
  }
}

.catalog-tab {
  position: relative;
  padding-bottom: 0.5rem;
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.4s ease;
  white-space: nowrap;
  color: var(--color-stone);
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .catalog-tab { font-size: 0.75rem; }
}

.catalog-tab:hover {
  color: var(--color-secondary);
}

.catalog-tab.active {
  color: var(--color-gold);
}

.catalog-tab-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.catalog-tab.active .catalog-tab-line {
  transform: scaleX(1);
}

.catalog-search {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .catalog-search { width: 350px; }
}

.catalog-search input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-glass-border);
  padding: 0.75rem 0.5rem;
  padding-right: 2.5rem;
  font-size: 0.875rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.4s ease;
}

.catalog-search input::placeholder {
  color: rgba(138, 138, 138, 0.4);
}

.catalog-search input:focus {
  border-bottom-color: var(--color-gold);
}

.catalog-search-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(138, 138, 138, 0.4);
  transition: color 0.4s ease;
}

.catalog-search:focus-within .catalog-search-icon {
  color: var(--color-gold);
}

.catalog-search-icon svg {
  width: 1rem;
  height: 1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 1.5rem;
}

@media (min-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1.5rem; }
}

@media (min-width: 1280px) {
  .catalog-grid { grid-template-columns: repeat(4, 1fr); }
}

.catalog-grid .tile-card {
  /* gap-y-16 equivalent */
  margin-bottom: 2.5rem;
}

.catalog-empty {
  text-align: center;
  padding: 8rem 0;
  border: 1px solid var(--color-glass-border);
  background: rgba(13, 13, 13, 0.5);
}

.catalog-empty p {
  color: var(--color-stone);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== TILE DETAIL PAGE ===== */
.detail-page {
  min-height: 100vh;
  background: var(--color-primary);
  padding-top: 8rem;
  padding-bottom: 6rem;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.detail-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.015);
  filter: blur(150px);
  pointer-events: none;
}

.detail-back {
  margin-bottom: 3rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 8rem;
}

@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: 7fr 5fr;
    gap: 5rem;
  }
}

.detail-image-frame {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid var(--color-glass-border);
  background: var(--color-dark-card);
  overflow: hidden;
  margin-bottom: 3rem;
}

.detail-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.4), transparent);
}

.detail-image-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.3), transparent);
}

.detail-collection-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.detail-specs h3 {
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-glass-border);
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 3rem;
}

@media (min-width: 768px) {
  .detail-specs-grid { grid-template-columns: repeat(2, 1fr); }
}

.detail-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
}

.detail-spec-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-stone-light);
}

.detail-spec-value {
  font-size: 0.875rem;
  color: var(--color-secondary);
  font-weight: 500;
}

.detail-recommended {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.detail-right {
  position: relative;
}

@media (min-width: 1024px) {
  .detail-right {
    position: sticky;
    top: 8rem;
  }
}

.detail-category-label {
  display: block;
  margin-bottom: 1rem;
}

.detail-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  font-size: 2.25rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) { .detail-title { font-size: clamp(1.75rem, 5vw, 3rem); } }
@media (min-width: 1024px) { .detail-title { font-size: 3.75rem; } }

.detail-price-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-glass-border);
}

.detail-price {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-gold);
  font-weight: 500;
}

.detail-price-sep {
  color: var(--color-stone);
}

.detail-size-label {
  font-size: 0.875rem;
  color: var(--color-stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-description {
  font-size: 1rem;
  color: var(--color-stone-light);
  line-height: 1.625;
  font-family: var(--font-body);
  margin-bottom: 2.5rem;
  text-align: justify;
}

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

.detail-feature-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-stone);
  display: block;
  margin-bottom: 0.25rem;
}

.detail-feature-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .detail-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}

.detail-actions .btn-luxury {
  flex: 1;
  justify-content: center;
}

.detail-actions .btn-luxury.wishlisted {
  border-color: rgba(248, 113, 113, 0.5);
  color: #f87171;
  background: rgba(248, 113, 113, 0.05);
}

.detail-actions .btn-luxury.wishlisted:hover {
  color: #f87171;
  background: rgba(248, 113, 113, 0.15);
  border-color: rgba(248, 113, 113, 0.8);
}

.detail-actions .btn-luxury.wishlisted::before {
  display: none;
}

.detail-actions .btn-luxury:not(.btn-luxury-filled) {
  min-width: 140px;
}

@media (max-width: 639px) {
  .detail-actions .btn-luxury {
    padding: 0.625rem 0.75rem !important;
    font-size: 0.65rem !important;
    min-width: 0 !important;
    letter-spacing: 0.1em !important;
  }
  .detail-actions a[href="#room-simulator"] {
    order: 1;
  }
  .detail-actions #tile-wishlist-btn {
    order: 2;
  }
  .detail-actions #tile-whatsapp-btn {
    order: 3;
    grid-column: span 2;
  }
}

/* Room Visualizer */
.room-visualizer {
  margin-bottom: 8rem;
}

.room-viz-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.room-viz-header h2 {
  margin-bottom: 1rem;
}

.room-viz-header-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  margin-top: 0.5rem;
  font-family: var(--font-body);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.room-viz-frame {
  border: 1px solid var(--color-glass-border);
  background: var(--color-dark-card);
  overflow: hidden;
  position: relative;
}

.room-viz-tabs {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid var(--color-glass-border);
  background: var(--color-primary);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.room-viz-tab {
  position: relative;
  padding: 1.25rem 2rem;
  font-size: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.4s ease;
  color: var(--color-stone);
  background: none;
  border: none;
}

.room-viz-tab:hover {
  color: var(--color-secondary);
}

.room-viz-tab.active {
  color: var(--color-gold);
}

.room-viz-tab-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.room-viz-tab.active .room-viz-tab-line {
  transform: scaleX(1);
}

.room-viz-display {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.room-viz-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.room-viz-scene.active {
  opacity: 1;
}

.room-viz-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.room-viz-scene:hover .room-viz-image {
  transform: scale(1.04);
}

.room-viz-floor {
  position: absolute;
  inset: 0;
  top: auto;
  height: 55%;
  background: #1c1917;
  border-top: 1px solid var(--color-glass-border);
  overflow: hidden;
  transform-origin: bottom;
  transform: skewX(15deg) scaleY(0.6);
  opacity: 0.95;
}

.room-viz-floor img,
.room-viz-floor .tile-gradient-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-viz-wall {
  position: absolute;
  inset: 0;
  bottom: auto;
  height: 45%;
  background: linear-gradient(to bottom, #0a0a0a, #141414);
  border-bottom: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-viz-art-frame {
  width: 16rem;
  height: 20rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(8px);
  padding: 1rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.room-viz-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.02), transparent);
  pointer-events: none;
}

.room-viz-art-info {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.5rem;
}

.room-viz-art-label {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.7);
  font-family: var(--font-body);
  margin-bottom: 0.125rem;
}

.room-viz-art-name {
  font-size: 10px;
  color: var(--color-stone-light);
  font-family: var(--font-heading);
}

.room-viz-depth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.4) 40%, rgba(5, 5, 5, 0.1) 100%);
  pointer-events: none;
  z-index: 2;
}

.room-viz-info-card {
  position: relative;
  z-index: 10;
  padding: 1.5rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--color-glass-border);
  align-self: flex-end;
}

.room-viz-info-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.room-viz-info-line {
  width: 1.5rem;
  height: 1px;
  background: var(--color-gold);
}

.room-viz-info-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-family: var(--font-body);
}

.room-viz-info-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.room-viz-info-desc {
  font-size: 0.75rem;
  color: var(--color-stone);
  letter-spacing: 0.05em;
}

/* Related tiles */
.related-section {
  margin-bottom: 3rem;
}

.related-header {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-glass-border);
  padding-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .related-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== WISHLIST PAGE ===== */
.wishlist-page {
  min-height: 100vh;
  background: var(--color-primary);
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.wishlist-inner {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .wishlist-inner { padding: 0 2.5rem; }
}

.wishlist-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.wishlist-header-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 1rem;
}

.wishlist-header h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .wishlist-header h1 { font-size: 3.75rem; }
}

.wishlist-header-desc {
  font-size: 0.875rem;
  color: var(--color-stone);
  font-family: var(--font-body);
  line-height: 1.625;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wishlist-header-desc { font-size: 1rem; }
}

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

@media (min-width: 640px) {
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .wishlist-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .wishlist-grid { grid-template-columns: repeat(4, 1fr); }
}

.wishlist-enquiry {
  margin-top: 4rem;
  text-align: center;
  border: 1px solid var(--color-glass-border);
  padding: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-dark-card);
}

@media (min-width: 768px) {
  .wishlist-enquiry { padding: 3rem; }
}

.wishlist-enquiry h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.wishlist-enquiry p {
  font-size: 0.875rem;
  color: var(--color-stone);
  font-family: var(--font-body);
  margin-bottom: 2rem;
  line-height: 1.625;
}

.wishlist-empty {
  text-align: center;
  padding: 6rem 0;
  border: 1px dashed var(--color-glass-border);
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wishlist-empty-icon {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: rgba(201, 169, 110, 0.3);
}

.wishlist-empty-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.5;
}

.wishlist-empty h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.wishlist-empty p {
  font-size: 0.75rem;
  color: var(--color-stone);
  font-family: var(--font-body);
  margin-bottom: 2rem;
  max-width: 16rem;
  line-height: 1.625;
}

/* ===== 404 PAGE ===== */
.not-found {
  min-height: 100vh;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-inner {
  text-align: center;
  max-width: 28rem;
}

.not-found-inner h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

/* ===== MAIN CONTENT ===== */
main {
  flex: 1;
}

@media (min-width: 768px) {
  .room-viz-tabs { justify-content: center; }
}

.room-viz-tabs::-webkit-scrollbar { display: none; }

/* Click indicator hover overlay */
.room-viz-display::after {
  content: 'Click to view full room';
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-glass-border);
  color: var(--color-gold);
  padding: 0.4rem 0.8rem;
  font-size: 9px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-5px);
}

@media (hover: hover) {
  .room-viz-display:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for info card to not cover the 16:9 visualizer on mobile */
@media (max-width: 767px) {
  .room-viz-info-card {
    padding: 0.75rem 1rem !important;
    margin-right: 1rem !important;
    margin-bottom: 1rem !important;
    max-width: 16rem !important;
  }
  .room-viz-info-title {
    font-size: 0.95rem !important;
  }
  .room-viz-info-desc {
    font-size: 0.65rem !important;
  }
}

/* Room Lightbox Modal */
.room-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(5, 5, 5, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  padding: 1.5rem;
}

.room-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.room-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass-border);
  color: var(--color-secondary);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  z-index: 10001;
}

.room-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: rotate(90deg);
}

.room-lightbox-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  background: #000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.room-lightbox.active .room-lightbox-content {
  transform: scale(1);
}

#room-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
