/* ==========================================================================
   0. RESET & BASE VARIABLES (System Fonts & Premium Theme)
   ========================================================================== */
:root {
  --bg-primary: #030712;
  --bg-secondary: #0b0f19;
  --bg-tertiary: #111827;
  --bg-glass: rgba(17, 24, 39, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --accent-gold: #d97706;
  --accent-glow: rgba(217, 119, 6, 0.15);
  --accent-gold-hover: #f59e0b;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px rgba(217, 119, 6, 0.25);
  
  --header-height: 80px;
  --scroll-margin: 90px;
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scroll Lock when Mobile Menu is Active */
body.menu-open {
  overflow: hidden;
}

/* Base Headings & Links */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* Scroll Margin for Anchor Links (Header Safety Rule) */
section {
  scroll-margin-top: var(--scroll-margin);
}

/* Focus Visible Accessible Styling */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

/* Common Layout Helpers */
.hidden {
  display: none !important;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px;
}

/* Global Badges & Typography */
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 20px;
}

.section-desc-center {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px auto;
  text-align: center;
}

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


/* ==========================================================================
   1. INTRO ANIMATION SCREEN & ANIMATION KEYFRAMES
   ========================================================================== */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}



/* CSP-safe intro closing state: avoids JavaScript inline style mutations */
.intro-overlay.intro-closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  max-width: 600px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Intro Logo & Falls */
.intro-logo-container {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.intro-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: introLogoGlow 2s ease-in-out infinite alternate;
}

.intro-logo-fallback {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 12px 18px;
  border-radius: 4px;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
  animation: introTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Intro Product Sequence Graphics */
.intro-products-visuals {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.intro-product-img-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  background-color: var(--bg-secondary);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: itemSlideIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.intro-product-img-wrapper:nth-child(2) { animation-delay: 0.2s; }
.intro-product-img-wrapper:nth-child(3) { animation-delay: 0.4s; }
.intro-product-img-wrapper:nth-child(4) { animation-delay: 0.6s; }
.intro-product-img-wrapper:nth-child(5) { animation-delay: 0.8s; }

.intro-product-fallback {
  font-size: 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  padding: 4px;
}

.intro-product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rotating Product Slider text */
.intro-product-slider {
  height: 40px;
  overflow: hidden;
  position: relative;
  width: 250px;
  margin-bottom: 12px;
}

.intro-product-item {
  display: none;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intro-product-item.active {
  display: block;
  animation: slideText 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-tagline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Animation Keyframes */
@keyframes introLogoGlow {
  0% {
    transform: scale(0.97);
    filter: drop-shadow(0 0 10px rgba(217, 119, 6, 0.2));
  }
  100% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 25px rgba(217, 119, 6, 0.6));
  }
}

@keyframes introTextReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes itemSlideIn {
  0% {
    opacity: 0.8;
    transform: translateY(4px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
  }
}

@keyframes slideText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   1.5 IMAGE FALLBACK HIDING RULES (Dual-Class Support)
   ========================================================================== */
.intro-logo-container.image-loaded .intro-logo-fallback,
.intro-logo-container.has-image .intro-logo-fallback {
  display: none !important;
}

.brand-logo.image-loaded .logo-fallback-text,
.brand-logo.has-image .logo-fallback-text {
  display: none !important;
}

.intro-product-img-wrapper.image-loaded .intro-product-fallback,
.intro-product-img-wrapper.has-image .intro-product-fallback {
  display: none !important;
}

.product-image-container.image-loaded .luxury-placeholder,
.product-image-container.has-image .luxury-placeholder {
  display: none !important;
}

.gallery-image-container.image-loaded .gallery-placeholder,
.gallery-image-container.has-image .gallery-placeholder {
  display: none !important;
}


/* ==========================================================================
   2. STICKY HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background-color: var(--bg-glass);
  border-bottom-color: var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
}

.header-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo brand styles */
.brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 48px;
}

.brand-logo img {
  height: 100%;
  max-height: 44px;
  object-fit: contain;
}

.logo-fallback-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav links */
.desktop-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--accent-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Button aesthetics */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.btn-header-whatsapp {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
}

.btn-header-whatsapp:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-glow);
}

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1010;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hamburger animations (Support for .open, .active, and [aria-expanded="true"]) */
.mobile-menu-toggle.open .hamburger-bar:nth-child(1),
.mobile-menu-toggle.active .hamburger-bar:nth-child(1),
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(2),
.mobile-menu-toggle.active .hamburger-bar:nth-child(2),
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(3),
.mobile-menu-toggle.active .hamburger-bar:nth-child(3),
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ==========================================================================
   3. MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-secondary);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-nav.open,
.mobile-nav.active {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

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

.mobile-nav-cta-wrapper {
  margin-top: 16px;
}

.btn-mobile-nav {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-radius: 40px;
  padding: 14px 40px;
}


/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, var(--bg-tertiary) 0%, var(--bg-primary) 70%);
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
  background-color: rgba(217, 119, 6, 0.05);
}

.hero-headline {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn-whatsapp-hero {
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
}

.btn-whatsapp-hero:hover {
  background-color: #25d366;
  color: var(--bg-primary);
}

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

.btn-call-hero:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}


/* ==========================================================================
   5. ABOUT SECTION
   ========================================================================== */
.about-section {
  background-color: var(--bg-secondary);
}

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

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.visual-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  padding: 40px 24px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-smooth);
}

.visual-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-premium);
}

.visual-card.accent {
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-color: rgba(217, 119, 6, 0.2);
}

.visual-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.visual-label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}


/* ==========================================================================
   6. PRODUCT CATEGORIES SECTION
   ========================================================================== */
.products-section {
  background-color: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* Glassmorphism Product Card */
.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: var(--shadow-glow);
}

.product-image-container {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.08);
}

/* Fallback Luxury Placeholder Setup */
.luxury-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  padding: 24px;
  border-bottom: 1px solid var(--border-glass);
}

.placeholder-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.placeholder-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.product-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-actions {
  margin-top: auto;
}

.btn-card-inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  padding: 10px 18px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.btn-card-inquiry:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
}


/* ==========================================================================
   7. GALLERY SECTION
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-secondary);
}

.gallery-group {
  margin-bottom: 60px;
}

.gallery-group:last-child {
  margin-bottom: 0;
}

.gallery-group-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  border-left: 3px solid var(--accent-gold);
  padding-left: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

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

/* Gallery Card Design */
.gallery-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-premium);
}

.gallery-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Gallery Placeholders */
.gallery-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-tertiary);
  padding: 16px;
  text-align: center;
}

.gallery-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Empty or Loading Dynamic State Handlers */
.gallery-empty-message,
.gallery-loading-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--border-glass);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gallery-loading-message {
  color: var(--accent-gold);
}


/* ==========================================================================
   8. WHY CHOOSE US & TRUST BADGES
   ========================================================================== */
.why-us-section {
  background-color: var(--bg-primary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.why-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 32px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: rgba(217, 119, 6, 0.2);
}

.why-icon-wrapper {
  margin-bottom: 24px;
}

.why-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  border: 1px solid var(--border-glass);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
}

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

.why-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Trust Badges Wrap */
.trust-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border-glass);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 10px 20px;
  border-radius: 40px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}


/* ==========================================================================
   9. CONTACT & BULK INQUIRY FORM
   ========================================================================== */
.contact-section {
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

/* Inquiry Form */
.form-container {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  padding: 48px;
  border-radius: 8px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-primary);
  width: 100%;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 1px var(--accent-gold);
}

/* Select element clean style with default premium styling */
.form-select {
  cursor: pointer;
  padding-right: 32px;
}

/* Error banner */
.form-error-msg {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.btn-submit {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  width: 100%;
  padding: 16px;
}

.btn-submit:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-glow);
}

/* Info Details */
.info-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.info-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.phone-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-link {
  font-size: 1.1rem;
  font-weight: 500;
}

.phone-link:hover {
  color: var(--accent-gold);
}

.btn-text-link {
  color: var(--text-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--accent-gold);
  width: fit-content;
  padding-bottom: 2px;
}

.btn-text-link:hover {
  color: var(--accent-gold);
}

/* Google Maps simulation element */
.map-placeholder-container {
  width: 100%;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
}

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

.map-visual-simulation {
  width: 100%;
  height: 180px;
  background-color: var(--bg-tertiary);
  position: relative;
  transition: var(--transition-smooth);
}

.map-simulation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.4) 0%, rgba(3, 7, 18, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.map-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.map-action-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.map-address-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-link-card:hover .map-visual-simulation {
  transform: scale(1.02);
}


/* ==========================================================================
   10. FOOTER & FLOATING ACTIONS
   ========================================================================== */
.main-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-glass);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

.copyright-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Floating WhatsApp Button (Desktop - Pill Shape Design) */
.desktop-floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: #25d366;
  color: var(--bg-primary);
  width: auto;
  height: auto;
  padding: 14px 22px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.desktop-floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-action-text {
  display: inline-block;
}

/* Mobile Sticky bottom bar default state (Hidden on desktop) */
.mobile-sticky-bar {
  display: none;
}


/* ==========================================================================
   11. RESPONSIVENESS MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3.25rem;
  }
  
  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Ensure scrolling text and buttons doesn't hide underneath */
  body {
    padding-bottom: 72px; /* Bottom space safety layout parameter */
  }

  .main-footer {
    padding-bottom: 110px; /* Secure bottom footer gap spacing on mobile screens */
  }

  .section-container {
    padding: 60px 20px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  /* Hero adjustments */
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  /* Grid adaptations */
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .form-container {
    padding: 30px 20px;
  }

  /* Floating WhatsApp elements adaptation on mobile sizes */
  .desktop-floating-whatsapp {
    display: none !important;
  }

  /* Mobile Sticky Footer Navigation setup */
  .mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: var(--bg-tertiary);
    border-top: 1px solid var(--border-glass);
    display: flex;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  }

  .sticky-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 4px;
    border-right: 1px solid var(--border-glass);
  }

  .sticky-action-btn:last-child {
    border-right: none;
  }

  .btn-text-icon {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-gold);
  }

  .sticky-action-btn:hover {
    color: var(--text-primary);
  }

  .sticky-whatsapp {
    background-color: rgba(37, 211, 102, 0.05);
  }

  .sticky-whatsapp .btn-text-icon {
    color: #25d366;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.15rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
/* ========================================================================
   12. UPDATED REVIEW CHANGES: CLEAN CTA, HORIZONTAL GALLERY, STANDALONE PAGES
   ======================================================================== */
.hero-section {
  min-height: 82vh;
}

.hero-content {
  padding-bottom: 40px;
}

.gallery-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-preview-row {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  gap: 18px;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-preview-row::-webkit-scrollbar {
  height: 8px;
}

.gallery-preview-row::-webkit-scrollbar-thumb {
  background-color: rgba(217, 119, 6, 0.45);
  border-radius: 999px;
}

.gallery-preview-row::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.gallery-preview-row .gallery-card,
.gallery-preview-row .gallery-view-more-card {
  flex: 0 0 min(72vw, 240px);
  scroll-snap-align: start;
}

.gallery-view-more-card {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 8px;
  background: radial-gradient(circle at top, rgba(217, 119, 6, 0.16), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
  transition: var(--transition-smooth);
}

.gallery-view-more-card:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 22px;
}

.standalone-page {
  min-height: 100vh;
  background: radial-gradient(circle at 80% 0%, rgba(217, 119, 6, 0.08), transparent 42%), var(--bg-primary);
}

.standalone-main {
  min-height: 100vh;
  position: relative;
}

.page-back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background-color: rgba(17, 24, 39, 0.86);
  border: 1px solid rgba(217, 119, 6, 0.35);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-back-link:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.standalone-container {
  padding-top: 120px;
}

.standalone-header {
  margin-bottom: 36px;
}

.standalone-content-grid {
  align-items: start;
}

.menu-page-nav {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.menu-page-link,
.contact-action-button {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.3);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(3, 7, 18, 0.94));
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  box-shadow: var(--shadow-premium);
}

.menu-page-link:hover,
.contact-action-button:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

.contact-actions-grid {
  max-width: 760px;
  margin: 0 auto 36px;
  display: grid;
  gap: 16px;
}

.contact-action-button {
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px;
  text-align: center;
  text-transform: none;
}

.contact-action-button span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
}

.contact-action-button strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.contact-action-button:hover span {
  color: var(--bg-primary);
}

.whatsapp-style {
  border-color: rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(17, 24, 39, 0.94));
}

.standalone-map-card {
  max-width: 760px;
  margin: 0 auto;
}

.footer-slogan {
  margin-top: 8px;
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .main-footer {
    padding-bottom: 0;
  }

  .gallery-group-title {
    font-size: 1.2rem;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 14px;
  }

  .page-back-link {
    top: 14px;
    left: 14px;
  }

  .standalone-container {
    padding-top: 96px;
  }

  .hero-section {
    min-height: 72vh;
  }
}


/* ========================================================================
   13. STRICT FIXES: IPHONE MENU COVER, ARROW BACK BUTTON, FAST GALLERY STATES
   ======================================================================== */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.mobile-nav {
  inset: 0;
  right: auto;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 100dvh;
  overflow-y: auto;
  padding: max(96px, env(safe-area-inset-top)) 24px max(54px, env(safe-area-inset-bottom));
  transform: translateX(100%);
  overscroll-behavior: contain;
}

.mobile-nav.open,
.mobile-nav.active {
  right: auto;
  transform: translateX(0);
}

.mobile-nav-list {
  width: 100%;
  min-height: calc(100svh - 160px);
  justify-content: center;
}

.page-back-link {
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.gallery-loading-message {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-nav {
    height: 100vh;
    height: 100svh;
    min-height: 100dvh;
  }

  .page-back-link {
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    min-height: 50px;
  }
}


/* ========================================================================
   14. CLEAN PRODUCT SHOWCASE + AUTOMATIC INTRO CAROUSEL UPDATE
   ======================================================================== */
.intro-content {
  width: min(94vw, 760px);
}

.intro-carousel-stage {
  width: min(94vw, 680px);
  margin: 18px auto 28px;
  overflow: hidden;
}

.intro-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px calc((100% - min(58vw, 270px)) / 2);
  scrollbar-width: none;
}

.intro-carousel-track::-webkit-scrollbar {
  display: none;
}

.intro-carousel-slide {
  flex: 0 0 min(58vw, 270px);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(217,119,6,0.10));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  position: relative;
}

.intro-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-carousel-slide span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.72);
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.clean-product-page {
  min-height: 100vh;
  color: #111827;
  background: #f6f2ea;
  overflow-x: hidden;
}

.product-theme-blue { background: linear-gradient(135deg, #dfeaf8 0%, #f8fbff 55%, #efe7db 100%); }
.product-theme-pink { background: linear-gradient(135deg, #f7dce6 0%, #fff7f9 55%, #eee7d7 100%); }
.product-theme-cream { background: linear-gradient(135deg, #f7edd8 0%, #fffaf0 55%, #e8f1f0 100%); }
.product-theme-sky { background: linear-gradient(135deg, #d7eef5 0%, #f8fcff 55%, #f4e8d8 100%); }
.product-theme-lilac { background: linear-gradient(135deg, #e8ddf7 0%, #fff9ff 55%, #e3f2e6 100%); }

.product-showcase-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  min-height: 72px;
  padding: max(14px, env(safe-area-inset-top)) 18px 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #111827;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.product-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-header-back {
  justify-self: start;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.product-header-inquire {
  justify-self: end;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.45);
}

.product-header-logo {
  justify-self: center;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111827;
}

.product-header-logo img {
  max-height: 44px;
  max-width: 150px;
  object-fit: contain;
}

.product-header-logo.has-image span,
.product-header-logo.image-loaded span {
  display: none !important;
}

.product-showcase-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 0 94px;
}

.product-showcase {
  width: 100%;
  min-height: calc(100vh - 206px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-showcase-copy {
  text-align: center;
  padding: 0 20px 18px;
  color: #111827;
}

.product-showcase-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.68;
}

.product-showcase-copy h1 {
  font-size: clamp(2.3rem, 9vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: #111827;
}

.product-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-carousel-track {
  display: flex;
  gap: clamp(18px, 4vw, 38px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px calc((100vw - min(72vw, 430px)) / 2) 22px;
  scrollbar-width: none;
}

.product-carousel-track::-webkit-scrollbar {
  display: none;
}

.product-carousel-slide {
  flex: 0 0 min(72vw, 430px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: center;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.product-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-carousel-loading {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-showcase-controls {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  min-height: 76px;
  padding: 12px 20px max(14px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.product-carousel-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 24, 39, 0.18);
  color: #111827;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.12);
}

.product-carousel-counter {
  min-width: 84px;
  text-align: center;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

@media (max-width: 768px) {
  .intro-carousel-slide {
    flex-basis: min(66vw, 255px);
  }

  .product-showcase-header {
    min-height: 66px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-header-logo {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .product-header-inquire {
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .product-showcase-main {
    padding-top: 94px;
    padding-bottom: 88px;
  }

  .product-carousel-track {
    padding-left: calc((100vw - 78vw) / 2);
    padding-right: calc((100vw - 78vw) / 2);
  }

  .product-carousel-slide {
    flex-basis: 78vw;
    border-radius: 28px;
  }

  .product-showcase-copy h1 {
    font-size: clamp(2rem, 12vw, 4rem);
  }
}

/* ========================================================================
   15. FINAL SOFT EDITORIAL COLOR SYSTEM + SEAMLESS INTRO LOOP
   ======================================================================== */
:root {
  --bg-primary: #f7f2e8;
  --bg-secondary: #eef3f0;
  --bg-tertiary: #fffaf1;
  --bg-glass: rgba(255, 250, 241, 0.78);
  --border-glass: rgba(24, 28, 32, 0.12);
  --accent-gold: #181c20;
  --accent-glow: rgba(24, 28, 32, 0.10);
  --accent-gold-hover: #2b3036;
  --text-primary: #15191f;
  --text-secondary: #5d6571;
  --text-muted: #8a919b;
  --shadow-premium: 0 24px 80px rgba(35, 31, 24, 0.12);
  --shadow-glow: 0 22px 56px rgba(24, 28, 32, 0.16);
}

html,
body:not(.clean-product-page) {
  background: #f7f2e8;
  color: var(--text-primary);
}

body:not(.clean-product-page) {
  background:
    radial-gradient(circle at 8% 8%, rgba(197, 224, 232, 0.62), transparent 31%),
    radial-gradient(circle at 94% 18%, rgba(244, 218, 224, 0.72), transparent 34%),
    linear-gradient(180deg, #fbf7ef 0%, #eff6f4 42%, #fbf0e7 100%);
}

.main-header,
.main-header.scrolled {
  background: rgba(255, 250, 241, 0.78);
  border-bottom-color: rgba(24, 28, 32, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand-logo,
.brand-logo img {
  background: transparent;
}

.logo-fallback-text,
.hero-headline {
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hamburger-bar {
  background-color: var(--text-primary);
}

.mobile-nav {
  background:
    radial-gradient(circle at 18% 10%, rgba(197, 224, 232, 0.78), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(244, 218, 224, 0.78), transparent 34%),
    #fbf7ef;
}

.mobile-nav-link {
  color: var(--text-primary);
}

.hero-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(230, 213, 188, 0.72), transparent 36%),
    linear-gradient(135deg, #f8f3e8 0%, #e9f3f5 55%, #f7e9eb 100%);
}

.hero-bg-overlay {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
}

.hero-badge,
.section-badge,
.info-title,
.map-tag,
.footer-slogan,
.gallery-group-title,
.visual-number,
.why-number,
.contact-action-button span {
  color: #1b1f25;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(24, 28, 32, 0.18);
}

.hero-subheadline,
.section-desc,
.section-desc-center,
.product-description,
.why-desc,
.info-text,
.map-address-hint,
.visual-label,
.copyright-text {
  color: var(--text-secondary);
}

.about-section,
.products-section,
.gallery-section,
.why-us-section,
.contact-section,
.main-footer {
  background: transparent;
}

.about-section .section-container,
.products-section .section-container,
.gallery-section .section-container,
.why-us-section .section-container,
.contact-section .section-container {
  border-radius: 42px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.about-section .section-container {
  background: rgba(255, 250, 241, 0.58);
}

.products-section .section-container {
  background: rgba(238, 246, 246, 0.62);
}

.gallery-section .section-container {
  background: rgba(249, 239, 226, 0.66);
}

.why-us-section .section-container {
  background: rgba(246, 236, 240, 0.60);
}

.contact-section .section-container {
  background: rgba(239, 245, 235, 0.62);
}

.product-card,
.why-card,
.visual-card,
.form-container,
.trust-badge,
.gallery-card,
.gallery-view-more-card,
.map-placeholder-container,
.contact-action-button,
.menu-page-link,
.standalone-map-card .map-placeholder-container {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(24, 28, 32, 0.12);
  box-shadow: 0 18px 60px rgba(35, 31, 24, 0.10);
}

.product-card:hover,
.why-card:hover,
.visual-card:hover,
.gallery-card:hover,
.gallery-view-more-card:hover {
  border-color: rgba(24, 28, 32, 0.24);
  box-shadow: 0 24px 80px rgba(35, 31, 24, 0.16);
}

.product-image-container,
.gallery-image-container,
.map-visual-simulation,
.form-input,
.form-select,
.form-textarea,
.luxury-placeholder,
.gallery-placeholder {
  background: #fffaf1;
}

.placeholder-text,
.placeholder-tag,
.badge-dot,
.btn-text-icon {
  color: var(--text-primary);
}

.btn,
.btn-card-inquiry,
.btn-submit,
.btn-header-whatsapp,
.btn-mobile-nav,
.gallery-view-more-card,
.contact-action-button,
.menu-page-link,
.page-back-link,
.product-header-inquire,
.product-carousel-arrow {
  border-radius: 999px;
}

.btn-primary,
.btn-submit,
.btn-card-inquiry:hover,
.gallery-view-more-card:hover,
.menu-page-link:hover,
.contact-action-button:hover,
.page-back-link:hover {
  background: #15191f;
  border-color: #15191f;
  color: #fffaf1;
}

.btn-secondary,
.btn-card-inquiry,
.btn-call-hero,
.btn-text-link {
  border-color: rgba(24, 28, 32, 0.22);
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  color: var(--text-primary);
  border-color: rgba(24, 28, 32, 0.14);
}

.form-label,
.info-title,
.gallery-group-title {
  letter-spacing: 0.16em;
}

.standalone-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(197, 224, 232, 0.62), transparent 34%),
    radial-gradient(circle at 90% 16%, rgba(244, 218, 224, 0.72), transparent 36%),
    linear-gradient(135deg, #fbf7ef 0%, #eef6f5 52%, #faeee4 100%);
  color: var(--text-primary);
}

.standalone-page .standalone-main {
  color: var(--text-primary);
}

.standalone-page .page-back-link {
  background: rgba(255, 250, 241, 0.74);
  color: var(--text-primary);
  border-color: rgba(24, 28, 32, 0.16);
  box-shadow: 0 18px 50px rgba(35, 31, 24, 0.12);
}

.standalone-page .page-back-link:hover {
  background: #15191f;
  color: #fffaf1;
}

.menu-page-link,
.contact-action-button {
  background: rgba(255, 255, 255, 0.64);
  color: var(--text-primary);
}

.whatsapp-style {
  background: rgba(232, 247, 237, 0.78);
  border-color: rgba(30, 126, 72, 0.24);
}

.product-theme-blue,
.product-theme-pink,
.product-theme-cream,
.product-theme-sky,
.product-theme-lilac,
.clean-product-page {
  background:
    radial-gradient(circle at 12% 7%, rgba(197, 224, 232, 0.75), transparent 34%),
    radial-gradient(circle at 90% 16%, rgba(244, 218, 224, 0.72), transparent 34%),
    linear-gradient(135deg, #fbf7ef 0%, #eff6f5 50%, #faeee4 100%);
  color: #15191f;
}

.product-showcase-header,
.product-showcase-controls {
  background: rgba(255, 250, 241, 0.72);
  border-color: rgba(24, 28, 32, 0.10);
}

.product-carousel-slide {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 90px rgba(35, 31, 24, 0.16);
}

.product-header-inquire,
.product-carousel-arrow {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 28, 32, 0.16);
}

.intro-overlay {
  background:
    radial-gradient(circle at 8% 10%, rgba(197, 224, 232, 0.64), transparent 36%),
    radial-gradient(circle at 94% 18%, rgba(244, 218, 224, 0.74), transparent 34%),
    linear-gradient(135deg, #fbf7ef 0%, #eef6f5 54%, #faeee4 100%);
  color: var(--text-primary);
}

.intro-logo-fallback {
  color: var(--text-primary);
  border-color: rgba(24, 28, 32, 0.20);
  background: rgba(255, 255, 255, 0.44);
}

.intro-title {
  color: var(--text-primary);
}

.intro-tagline {
  color: var(--text-secondary);
}

.intro-carousel-stage {
  overflow: hidden;
  width: min(100vw, 780px);
}

.intro-carousel-track {
  display: flex;
  width: max-content;
  gap: 0;
  overflow: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
  padding: 8px 0;
  animation: introSeamlessLoop 13s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.intro-carousel-track.intro-carousel-running {
  animation-play-state: running;
}

.intro-carousel-loop-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.intro-carousel-slide {
  flex: 0 0 min(62vw, 285px);
  background: rgba(255, 255, 255, 0.70);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 90px rgba(35, 31, 24, 0.16);
}

.intro-carousel-slide span {
  background: rgba(255, 250, 241, 0.78);
  color: var(--text-primary);
}

@keyframes introSeamlessLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .about-section .section-container,
  .products-section .section-container,
  .gallery-section .section-container,
  .why-us-section .section-container,
  .contact-section .section-container {
    border-radius: 30px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .intro-carousel-stage {
    width: 100vw;
  }

  .intro-carousel-loop-set {
    gap: 14px;
    padding-right: 14px;
  }

  .intro-carousel-slide {
    flex-basis: min(72vw, 290px);
    border-radius: 30px;
  }
}


/* ========================================================================== 
   12. FINAL 3-4 COLOR PREMIUM COMBO OVERRIDES
   ========================================================================== */
:root {
  --premium-ink: #17191c;
  --premium-muted: #6f7477;
  --premium-cream: #fbf3e7;
  --premium-ivory: #fffaf1;
  --premium-blue: #dfeef6;
  --premium-sky: #eaf4f7;
  --premium-pink: #f7e0e7;
  --premium-blush: #faedf0;
  --premium-grey: #ece9e2;
  --premium-line: rgba(23, 25, 28, 0.12);
  --premium-shadow: 0 24px 80px rgba(35, 31, 24, 0.12);
  --accent-gold: #17191c;
  --accent-gold-hover: #2f3438;
  --accent-glow: rgba(23, 25, 28, 0.10);
  --text-primary: #17191c;
  --text-secondary: #676d70;
  --text-muted: #8d9295;
  --bg-primary: var(--premium-cream);
  --bg-secondary: var(--premium-ivory);
  --bg-tertiary: #ffffff;
  --bg-glass: rgba(255, 250, 241, 0.78);
  --border-glass: var(--premium-line);
  --shadow-premium: var(--premium-shadow);
  --shadow-glow: 0 22px 70px rgba(23, 25, 28, 0.16);
}

html,
body {
  background: var(--premium-cream);
  color: var(--premium-ink);
}

.main-header,
.main-header.scrolled {
  background: rgba(255, 250, 241, 0.82);
  border-bottom-color: rgba(23, 25, 28, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-nav {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 18% 12%, rgba(223, 238, 246, 0.94), transparent 38%),
    radial-gradient(circle at 88% 20%, rgba(247, 224, 231, 0.96), transparent 38%),
    linear-gradient(135deg, #fffaf1 0%, #eaf4f7 50%, #faedf0 100%);
}

.nav-link,
.mobile-nav-link,
.hero-badge,
.section-badge,
.gallery-group-title,
.info-title {
  color: var(--premium-ink);
}

.logo-fallback-text,
.hero-headline {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: var(--premium-ink);
}

.section-container {
  border-radius: 42px;
}

.hero-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(223, 238, 246, 0.92), transparent 34%),
    radial-gradient(circle at 94% 18%, rgba(247, 224, 231, 0.86), transparent 34%),
    linear-gradient(135deg, #fffaf1 0%, #fbf3e7 42%, #eaf4f7 100%);
}

.hero-bg-overlay {
  background:
    linear-gradient(115deg, rgba(255, 250, 241, 0.42) 0%, rgba(234, 244, 247, 0.46) 58%, rgba(250, 237, 240, 0.42) 100%);
}

.about-section {
  background: var(--premium-blue);
}
.about-section .section-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.70), rgba(234,244,247,0.62));
}

.products-section {
  background: var(--premium-cream);
}
.products-section .section-container {
  background: linear-gradient(135deg, rgba(255,250,241,0.86), rgba(251,240,223,0.72));
}

.gallery-section {
  background: var(--premium-pink);
}
.gallery-section .section-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.74), rgba(250,237,240,0.80));
}

.why-us-section {
  background: var(--premium-sky);
}
.why-us-section .section-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.70), rgba(223,238,246,0.70));
}

.contact-section {
  background: var(--premium-grey);
}
.contact-section .section-container {
  background: linear-gradient(135deg, rgba(255,250,241,0.88), rgba(236,233,226,0.78));
}

.product-card,
.why-card,
.visual-card,
.form-container,
.gallery-card,
.gallery-view-more-card,
.map-placeholder-container,
.contact-action-button,
.menu-page-link,
.product-carousel-slide,
.standalone-container,
.product-showcase-header,
.product-showcase-controls {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(23, 25, 28, 0.12);
  box-shadow: var(--premium-shadow);
}

.product-card:hover,
.why-card:hover,
.visual-card:hover,
.gallery-card:hover,
.gallery-view-more-card:hover,
.contact-action-button:hover,
.menu-page-link:hover,
.product-carousel-slide:hover {
  border-color: rgba(23, 25, 28, 0.22);
  box-shadow: 0 28px 96px rgba(35, 31, 24, 0.18);
}

.product-image-container,
.gallery-image-container,
.luxury-placeholder,
.gallery-placeholder,
.form-input,
.form-select,
.form-textarea,
.map-visual-simulation {
  background: rgba(255, 250, 241, 0.86);
  color: var(--premium-ink);
}

.btn-primary,
.btn-submit,
.btn-card-inquiry:hover,
.gallery-view-more-card:hover,
.contact-action-button:hover,
.menu-page-link:hover,
.page-back-link:hover,
.product-header-inquire:hover,
.product-carousel-arrow:hover {
  background: var(--premium-ink);
  border-color: var(--premium-ink);
  color: var(--premium-ivory);
}

.btn-secondary,
.btn-card-inquiry,
.gallery-view-more-card,
.contact-action-button,
.menu-page-link,
.page-back-link,
.product-header-inquire,
.product-carousel-arrow {
  background: rgba(255,255,255,0.66);
  border-color: rgba(23, 25, 28, 0.14);
  color: var(--premium-ink);
}

/* Standalone menu pages: distinct soft colors */
.standalone-page.page-soft-blue {
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,0.72), transparent 34%),
    linear-gradient(135deg, #dfeef6 0%, #eef7f8 54%, #fffaf1 100%);
}
.standalone-page.page-warm-ivory {
  background:
    radial-gradient(circle at 85% 8%, rgba(247,224,231,0.62), transparent 34%),
    linear-gradient(135deg, #fffaf1 0%, #fbf0df 52%, #f5eee4 100%);
}
.standalone-page.page-blush-pink {
  background:
    radial-gradient(circle at 10% 10%, rgba(223,238,246,0.55), transparent 34%),
    linear-gradient(135deg, #faedf0 0%, #f7e0e7 52%, #fffaf1 100%);
}
.standalone-page.page-powder-blue {
  background:
    radial-gradient(circle at 86% 12%, rgba(250,237,240,0.62), transparent 34%),
    linear-gradient(135deg, #eaf4f7 0%, #dfeef6 54%, #fffaf1 100%);
}
.standalone-page.page-soft-cream {
  background:
    radial-gradient(circle at 12% 10%, rgba(223,238,246,0.50), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(247,224,231,0.54), transparent 34%),
    linear-gradient(135deg, #fffaf1 0%, #ece9e2 62%, #fbf3e7 100%);
}

/* Product pages: every category gets its own soft tone */
.clean-product-page.product-theme-blue {
  background: linear-gradient(135deg, #dfeef6 0%, #f5fbfb 48%, #fffaf1 100%);
}
.clean-product-page.product-theme-pink {
  background: linear-gradient(135deg, #faedf0 0%, #f7e0e7 48%, #fffaf1 100%);
}
.clean-product-page.product-theme-cream {
  background: linear-gradient(135deg, #fffaf1 0%, #fbf0df 50%, #f2eee7 100%);
}
.clean-product-page.product-theme-sky {
  background: linear-gradient(135deg, #eaf4f7 0%, #dfeef6 54%, #f8f4ec 100%);
}
.clean-product-page.product-theme-lilac {
  background: linear-gradient(135deg, #f2eaf6 0%, #faedf0 50%, #fffaf1 100%);
}

/* Intro: 4-color premium canvas + slower carousel */
.intro-overlay {
  background:
    radial-gradient(circle at 10% 12%, rgba(223,238,246,0.96), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(247,224,231,0.96), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(236,233,226,0.88), transparent 36%),
    linear-gradient(135deg, #fffaf1 0%, #eaf4f7 38%, #faedf0 70%, #fbf0df 100%);
  color: var(--premium-ink);
}

.intro-carousel-track {
  animation-duration: 24s;
  animation-timing-function: linear;
}

.intro-carousel-slide {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 90px rgba(35, 31, 24, 0.14);
}

.intro-carousel-slide span {
  background: rgba(255,250,241,0.88);
  color: var(--premium-ink);
}

@media (max-width: 768px) {
  .section-container {
    border-radius: 28px;
  }

  .intro-carousel-track {
    animation-duration: 26s;
  }
}
