/* 
  PRIZM LIGHTS - PREMIUM SHOWROOM WEBSITE 
  Central Stylesheet (CSS)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');


/* --- CUSTOM TOKENS --- */
:root {
  --ivory: #FBF9F4;
  --warm-white: #FFFFFF;
  --champagne: #E9DCC3;
  --brass: #B08D57;
  --charcoal: #1F1F1F;
  --stone: #6B6B67;
  --warm-cream: #F5EEDC;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  
  --max-width: 1280px;
  --header-height: 80px;
}

/* --- BASE & RESETS --- */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--ivory);
  color: var(--charcoal);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* --- TYPOGRAPHY SYSTEM --- */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 0.5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--brass);
  color: var(--warm-white);
  border: 1px solid var(--brass);
}

.btn-primary:hover {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}

.btn-secondary {
  border: 1px solid var(--brass);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--brass);
  color: var(--warm-white);
}

.btn-outline {
  border: 1px solid var(--champagne);
  color: var(--charcoal);
}

.btn-outline:hover {
  border-color: var(--brass);
  background-color: rgba(176, 141, 87, 0.05);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--warm-white);
  border: 1px solid #25D366;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

.section-header {
  margin-bottom: 3.5rem;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(251, 249, 244, 0.95);
  z-index: 100;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(251, 249, 244, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 220, 195, 0.5);
  box-shadow: 0 4px 30px rgba(43, 40, 35, 0.03);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

/* --- BRAND LOGO STYLING (BANNER INSPIRED) --- */
.logo-wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-icon-img {
  width: 32px;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
}

.logo-wordmark:hover .logo-icon-img {
  transform: rotate(15deg) scale(1.15);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-main-text {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.logo-wordmark .char-pri {
  color: var(--charcoal);
  transition: var(--transition-fast);
}

.logo-wordmark .char-sec {
  color: #FFC107; /* Vivid gold/yellow color matching the banner */
  position: relative;
}

/* Custom underline style for L in LIGHTS matching shop banner */
.logo-wordmark .char-sec.logo-l::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFC107;
}

.logo-slogan {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--stone);
  margin-top: 0.3rem;
  text-transform: none;
  line-height: 1;
}

/* Dark background logo variations */
.logo-dark-bg .char-pri {
  color: var(--warm-white) !important;
}

.logo-dark-bg .logo-slogan {
  color: var(--champagne) !important;
}

/* Spacer for logo characters in grid */
.logo-wordmark .logo-space {
  width: 0.4rem;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brass);
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--brass);
}

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

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--charcoal);
  transition: var(--transition-fast);
}

/* --- LOADING SCREEN --- */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #121212; /* Mild dark color matching shop banner */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* --- OFFICIAL 3D PRIZM LIGHTS BRANDING ASSET (LOADING SCREEN) --- */
.loader-branding-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.loader-brand-img {
  width: 420px;
  max-width: 85vw;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
  animation: loaderEntrance 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes loaderEntrance {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.loader-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 2.2vw, 0.88rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.12em;
  color: rgba(233, 220, 195, 0.85);
  margin-top: 1rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 360px) {
  .loader-brand-img {
    max-width: 80vw;
  }
  .loader-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
}

/* --- LOADING PAGE PREMIUM EFFECTS --- */
.animated-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  animation: letterEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes letterEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Flicker effect specifically for light highlights Z and L, mimicking high-end bulb startup */
.flicker-char {
  animation: letterEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             lampStartup 1.5s ease-out 0.8s forwards;
}

@keyframes lampStartup {
  0% { opacity: 0.3; text-shadow: none; }
  10% { opacity: 1; text-shadow: 0 0 8px rgba(255, 193, 7, 0.4); }
  15% { opacity: 0.4; text-shadow: none; }
  25% { opacity: 0.9; text-shadow: 0 0 12px rgba(255, 193, 7, 0.5); }
  30% { opacity: 0.5; text-shadow: none; }
  45% { opacity: 1; text-shadow: 0 0 15px rgba(255, 193, 7, 0.8), 0 0 25px rgba(255, 193, 7, 0.3); }
  100% { opacity: 1; text-shadow: 0 0 20px rgba(255, 193, 7, 0.9), 0 0 30px rgba(255, 193, 7, 0.4); }
}

/* Slogan reveal with letter-spacing growth */
.loader-slogan-animate {
  opacity: 0;
  animation: sloganEntrance 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

@keyframes sloganEntrance {
  from {
    opacity: 0;
    letter-spacing: -0.05em;
  }
  to {
    opacity: 0.85;
    letter-spacing: 0.12em;
  }
}

/* Growing radial glow representing light turning on */
.loader-glowing-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, rgba(233, 220, 195, 0.08) 50%, rgba(18, 18, 18, 0) 70%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 1;
  opacity: 0;
  animation: lightPowerOn 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  pointer-events: none;
}

@keyframes lightPowerOn {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.75;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* --- ASYMMETRIC HERO --- */
.hero {
  padding-top: 3rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 540px;
  z-index: 5;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--brass);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 90%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(43, 40, 35, 0.05);
  border-left: 1px solid var(--champagne);
  border-top: 1px solid var(--champagne);
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

/* Signature Atmosphere Glow Behind Hero Image */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -45%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 238, 220, 0.4) 0%, rgba(233, 220, 195, 0.15) 45%, rgba(251, 249, 244, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
  animation: heroPulse 7s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% {
    transform: translate(-40%, -45%) scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: translate(-40%, -45%) scale(1.05);
    opacity: 1;
  }
}

/* --- TRUST / INTRO SECTION --- */
.trust-section {
  background-color: var(--warm-white);
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 5rem;
  align-items: center;
}

.trust-lead h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.trust-lead h2 span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.trust-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--stone);
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  color: var(--brass);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.feature-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.5;
}

/* --- CATEGORIES EXPLORER --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--champagne);
  background-color: var(--warm-white);
  transition: var(--transition-smooth);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(43, 40, 35, 0) 50%, rgba(43, 40, 35, 0.7) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

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

.category-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--charcoal) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.category-card:hover {
  border-color: var(--brass);
  box-shadow: 0 8px 24px rgba(43, 40, 35, 0.06);
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-card:hover::after {
  background: linear-gradient(to bottom, rgba(43, 40, 35, 0.2) 40%, rgba(43, 40, 35, 0.85) 100%);
}

.category-card:hover .category-title {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* --- PRODUCT CARDS (Centralized Pattern) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background-color: var(--warm-white);
  border: 1px solid var(--champagne);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.product-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(110, 106, 95, 0.08);
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background-color: var(--ivory);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.04);
}

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

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-divider {
  height: 1px;
  background-color: var(--champagne);
  margin-bottom: 1.25rem;
  border: none;
}

.product-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.4;
}

.product-spec-item {
  color: var(--stone);
}

.product-spec-item strong {
  color: var(--charcoal);
  font-weight: 500;
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}

.product-action {
  margin-top: auto;
  width: 100%;
}

/* --- WHY CHOOSE US --- */
.why-section {
  background-color: var(--warm-white);
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.why-card {
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.why-card-icon {
  width: 36px;
  height: 36px;
  color: var(--brass);
  margin-bottom: 1.5rem;
}

.why-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.25;
  fill: none;
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.why-card-text {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
}

/* --- HERITAGE TRUST ELEMENT (ABOUT PAGE) --- */
.heritage-trust-section {
  padding: 0 0 2rem 0;
}

.heritage-trust-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--warm-white);
  border: 1px solid var(--champagne);
  border-radius: 8px;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-fast);
}

.heritage-trust-card:hover {
  border-color: var(--brass);
  box-shadow: 0 6px 24px rgba(176, 141, 87, 0.08);
}

.heritage-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 130px;
  text-align: center;
}

.heritage-year {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 600;
  color: var(--brass);
  font-style: italic;
  letter-spacing: 0.02em;
}

.heritage-badge-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-top: 0.35rem;
  white-space: nowrap;
}

.heritage-divider {
  width: 1px;
  align-self: stretch;
  background: var(--champagne);
  flex-shrink: 0;
}

.heritage-text-block {
  flex: 1;
}

.heritage-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.heritage-desc {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--stone);
  margin: 0;
}

@media (max-width: 768px) {
  .heritage-trust-card {
    padding: 1.5rem 1.75rem;
    gap: 1.75rem;
  }
  .heritage-year {
    font-size: 2.8rem;
  }
}

@media (max-width: 580px) {
  .heritage-trust-card {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }
  .heritage-divider {
    width: 60px;
    height: 1px;
    align-self: center;
  }
  .heritage-stat-block {
    min-width: auto;
  }
  .heritage-year {
    font-size: 2.5rem;
  }
  .heritage-title {
    font-size: 1.3rem;
  }
  .heritage-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .heritage-trust-card {
    padding: 1.25rem 0.85rem;
  }
  .heritage-year {
    font-size: 2.2rem;
  }
  .heritage-badge-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .heritage-desc {
    font-size: 0.86rem;
  }
}

/* --- ABOUT PREVIEW --- */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-img-container {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--champagne);
  position: relative;
  overflow: hidden;
}

.about-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-preview-img-container:hover .about-preview-img {
  transform: scale(1.03);
}

.about-preview-content {
  max-width: 480px;
}

.about-preview-content p {
  color: var(--stone);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* --- PORTFOLIO / GALLERY STRIP (ABOUT PAGE) --- */
.showroom-showcase {
  margin-top: 4rem;
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.showroom-grid-alt {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}

.showroom-img-box {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--champagne);
}

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

.showroom-img-box:hover img {
  transform: scale(1.03);
}

/* Highlight Strip on About Page */
.highlight-strip {
  background-color: var(--warm-white);
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
  padding: 3rem 0;
  margin-top: 5rem;
}

.highlight-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.highlight-pill {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--brass);
  border-radius: 50%;
}

/* --- FILTER PILLS (COLLECTIONS PAGE) --- */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-pill {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--champagne);
  color: var(--stone);
  background-color: var(--warm-white);
  transition: var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--brass);
  color: var(--warm-white);
  background-color: var(--brass);
}

/* --- CONTACT PAGE DESIGN --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 5rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-card-method {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card-method h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
}

.contact-card-method p {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.6;
}

.contact-card-method .contact-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.contact-card-method .contact-link:hover {
  color: var(--charcoal);
}

/* Form Styling */
.contact-form-wrapper {
  background-color: var(--warm-white);
  border: 1px solid var(--champagne);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(110, 106, 95, 0.04);
}

.form-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone);
}

.form-control {
  font-family: var(--font-sans);
  padding: 0.85rem 1rem;
  border: 1px solid var(--champagne);
  background-color: var(--ivory);
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--brass);
  background-color: var(--warm-white);
}

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

.form-actions-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-actions-buttons button,
.form-actions-buttons a {
  flex: 1;
}

/* Google Map Iframe Container */
.map-section {
  margin-top: 5rem;
  border-top: 1px solid var(--champagne);
}

.map-container {
  width: 100%;
  height: 450px;
  border: 1px solid var(--champagne);
  position: relative;
  background-color: var(--warm-white);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- HOME LOCATION & MAP CARD --- */
.location-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: var(--warm-white);
}

.location-map-card {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--champagne);
  box-shadow: 0 10px 30px rgba(43, 40, 35, 0.07);
  background-color: #e5e3df;
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-floating-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #1a73e8;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.map-floating-badge:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  color: #1557b0;
}

.map-floating-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.location-details-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: #ffffff;
  border: 1px solid var(--champagne);
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(43, 40, 35, 0.04);
}

.location-details-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.location-details-info svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--brass);
}

.location-details-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .location-map-card {
    height: 380px;
    border-radius: 16px;
  }
  .location-details-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- REUSABLE MODALS (PRODUCT ENQUIRY & DETAILS) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(43, 40, 35, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--warm-white);
  border: 1px solid var(--brass);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(43, 40, 35, 0.15);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.open .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--brass);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Detail Modal Grid Layout */
.modal-container-large {
  max-width: 900px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.detail-img-box {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--champagne);
  background-color: var(--ivory);
}

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

.detail-info-box {
  display: flex;
  flex-direction: column;
}

.detail-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.detail-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 1rem;
}

.detail-desc {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.detail-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.detail-specs-table tr {
  border-bottom: 1px solid var(--champagne);
}

.detail-specs-table td {
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.detail-specs-table td:first-child {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  width: 35%;
}

.detail-specs-table td:last-child {
  color: var(--charcoal);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  background-color: #25D366;
  color: var(--warm-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  background-color: #128C7E;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* --- FOOTER --- */
footer {
  background-color: var(--warm-white);
  border-top: 1px solid var(--champagne);
  margin-top: auto;
}

.footer-top {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--stone);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--stone);
}

.footer-links a:hover {
  color: var(--brass);
  transform: translateX(3px);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
}

.footer-info p strong {
  color: var(--charcoal);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--stone);
}

.social-icon.whatsapp {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}
.social-icon.whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.08);
  border-color: #25D366;
}

.social-icon.instagram {
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.3);
}
.social-icon.instagram:hover {
  background-color: rgba(225, 48, 108, 0.08);
  border-color: #E1306C;
}

.social-icon.youtube {
  color: #FF0000;
  border-color: rgba(255, 0, 0, 0.3);
}
.social-icon.youtube:hover {
  background-color: rgba(255, 0, 0, 0.08);
  border-color: #FF0000;
}

.social-icon.facebook {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.3);
}
.social-icon.facebook:hover {
  background-color: rgba(24, 119, 242, 0.08);
  border-color: #1877F2;
}

.social-icon.x,
.social-icon.x-twitter {
  color: var(--charcoal);
  border-color: rgba(31, 31, 31, 0.3);
}
.social-icon.x:hover,
.social-icon.x-twitter:hover {
  background-color: rgba(31, 31, 31, 0.08);
  border-color: var(--charcoal);
  color: #000000;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--champagne);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--stone);
}

/* --- ANIMATION CLASS: FADE-IN ON SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .trust-grid {
    gap: 3rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}


/* --- PRODUCT DETAILS PAGE STYLES --- */
.detail-page-layout {
  padding-top: 4rem;
  padding-bottom: 7rem;
}

.back-link-wrapper {
  margin-bottom: 2.5rem;
}

.back-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

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

.detail-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .detail-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.detail-gallery {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.detail-main-image {
  border: 1px solid var(--champagne);
  background-color: var(--warm-white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(110, 106, 95, 0.05);
  display: block;
  width: 100%;
}

.detail-main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.detail-main-image:hover img {
  transform: scale(1.08); /* Elegant hover zoom-in */
}

.detail-content-side {
  display: flex;
  flex-direction: column;
}

.detail-category-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.detail-product-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.detail-product-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 2.5rem;
}

.detail-specs-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 0.5rem;
}

/* Detail page specs table */
.detail-page-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3.5rem;
}

.detail-page-table tr {
  border-bottom: 1px solid var(--champagne);
}

.detail-page-table td {
  padding: 1rem 0;
  font-size: 0.9rem;
}

.detail-page-table td:first-child {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  width: 30%;
}

.detail-page-table td:last-child {
  color: var(--charcoal);
}

/* Enquiry Form Card on details page */
.detail-enquiry-card {
  background-color: var(--warm-white);
  border: 1px solid var(--champagne);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(110, 106, 95, 0.03);
}

.detail-enquiry-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  .section-header {
    margin-bottom: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  /* Brand Logo Wordmark Scaling */
  .logo-main-text {
    font-size: 1.2rem;
  }
  
  .logo-slogan {
    font-size: 0.48rem;
    margin-top: 0.25rem;
  }
  
  .logo-wordmark .logo-space {
    width: 0.3rem;
  }
  
  /* Navigation Hamburger Layout */
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--warm-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    z-index: 105;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--champagne);
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.75rem 0;
    width: 100%;
    display: block;
  }
  
  .nav-actions {
    display: none;
  }
  
  .nav-links .nav-enquire-mobile {
    display: inline-flex;
    margin-top: 1rem;
    width: 100%;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Hero section optimization */
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-image-wrapper {
    justify-content: center;
  }
  
  .hero-image-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  
  /* Trust Grid Stacked */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust-lead {
    text-align: center;
  }
  
  .trust-lead h2 {
    font-size: 2rem;
  }
  
  .trust-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Categories Section - 2 Columns Grid on Mobile (Landscape Ratio) */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .category-card {
    aspect-ratio: 16 / 10;
  }
  
  .category-title {
    font-size: 1.05rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }
  
  /* Product Cards & Grid Optimization */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-card {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  
  .product-img-wrapper {
    aspect-ratio: auto;
    height: 220px; /* Constrain image tallness on mobile */
  }
  
  .product-info {
    padding: 1.25rem;
  }
  
  .product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .product-desc {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .product-specs-list {
    margin-bottom: 1.25rem;
    gap: 0.6rem 0.4rem;
  }
  
  /* About preview grid stacked */
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-preview-content {
    max-width: 100%;
    text-align: center;
  }
  
  /* Contact Form & Layout */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  /* Footer Stacked & Centered */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .highlight-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  
  .highlight-pill {
    font-size: 1.1rem;
    text-align: center;
  }
  
  /* Modals */
  .modal-container {
    padding: 1.5rem;
    width: 94vw;
    max-width: 94vw;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  /* Product Details Page Mobile layout adjustments */
  .detail-page-layout {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  
  .detail-gallery {
    position: static;
  }
  
  .detail-product-title {
    font-size: 2.2rem;
  }
  
  .detail-product-desc {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }
  
  .detail-page-table {
    margin-bottom: 2.5rem;
  }
  
  .detail-page-table td {
    padding: 0.75rem 0;
    font-size: 0.85rem;
  }
  
  .detail-enquiry-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }
  
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
  
  .showroom-grid, .showroom-grid-alt {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-actions-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 360px) {
  /* Logo adjustments for narrow phone widths */
  .logo-main-text {
    font-size: 1.05rem;
  }
  
  .logo-slogan {
    font-size: 0.44rem;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }
  
  .detail-product-title {
    font-size: 1.85rem;
  }
}

/* --- PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-transition: none !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  
  .hero-glow, .loading-glow {
    animation: none !important;
    opacity: 0.8 !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .product-card:hover, .category-card:hover .category-img, .hero-image-container:hover .hero-image, .showroom-img-box:hover img {
    transform: none !important;
  }
}

/* --- PREMIUM INTERACTIVE SHINE & GLASSMORPHISM OVERRIDES --- */

/* Glassmorphic values cards & trust points */
.why-card, .trust-card {
  background: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(233, 220, 195, 0.5) !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, box-shadow 0.4s ease !important;
}

.why-card:hover, .trust-card:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(176, 141, 87, 0.08) !important;
  border-color: var(--brass) !important;
}

/* Glassmorphic details panel enquiry form card */
.detail-enquiry-card {
  background-color: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(233, 220, 195, 0.6) !important;
}

/* Glassmorphic modal templates */
.modal-container {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(233, 220, 195, 0.6) !important;
}

/* Metallic text sheen for major h2 headers */
.section-header h2 {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    to right,
    var(--charcoal) 20%,
    var(--brass) 40%,
    var(--brass) 60%,
    var(--charcoal) 80%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShine 6s linear infinite;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

/* Micro-animation: light beam reflection on buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
}

.btn:hover::before {
  animation: buttonShine 0.85s ease-in-out forwards;
}

@keyframes buttonShine {
  100% {
    left: 150%;
  }
}

/* Loader Logo Animation and Sizes */
.loader-logo-img {
  width: 50px !important;
  height: auto;
  margin-bottom: 0 !important;
  animation: logoLoadEntrance 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  opacity: 0;
}

@keyframes logoLoadEntrance {
  0% {
    transform: scale(0.3) rotate(-180deg);
    opacity: 0;
    filter: drop-shadow(0 0 0px rgba(255, 193, 7, 0));
  }
  60% {
    transform: scale(1.15) rotate(15deg);
    opacity: 0.9;
    filter: drop-shadow(0 0 30px rgba(255, 193, 7, 0.5));
  }
  80% {
    transform: scale(0.95) rotate(-5deg);
    opacity: 0.95;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.3));
  }
}

/* Hover rotation transition on small logo icon */
.logo-icon-img {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05));
}

@media (max-width: 768px) {
  .logo-icon-img {
    width: 24px !important;
  }
  
  .category-title {
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
  }
}

/* --- 2-COLUMN SIDEBAR CATALOG LAYOUT & E-COMMERCE CONTROLS --- */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.catalog-sidebar {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.sidebar-widget {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(233, 220, 195, 0.5);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(43, 40, 35, 0.02);
}

.sidebar-widget-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
  text-transform: uppercase;
}

.checkbox-label:hover {
  color: var(--brass);
}

/* Custom Checkbox Design */
.checkbox-input {
  display: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  background-color: var(--warm-white);
}

.checkbox-input:checked + .custom-checkbox {
  background-color: var(--brass);
  border-color: var(--brass);
}

.custom-checkbox::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid var(--warm-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: var(--transition-fast);
  margin-bottom: 2px;
}

.checkbox-input:checked + .custom-checkbox::after {
  transform: rotate(45deg) scale(1);
}

/* Search and Sort Header Bar */
.catalog-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--champagne);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--charcoal);
  transition: var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--brass);
  background-color: var(--warm-white);
  box-shadow: 0 0 10px rgba(176, 141, 87, 0.15);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--stone);
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}

.catalog-controls-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product-count-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--stone);
  font-weight: 500;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.sort-select {
  padding: 0.65rem 2rem 0.65rem 1rem;
  border: 1px solid var(--champagne);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--charcoal);
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 14px;
}

.sort-select:focus {
  outline: none;
  border-color: var(--brass);
  background-color: var(--warm-white);
}

/* Sidebar Responsive Stack Styles */
@media (max-width: 992px) {
  .catalog-layout {
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .catalog-sidebar {
    position: static;
  }
  
  .sidebar-widget {
    padding: 1.25rem;
  }
  
  .checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .checkbox-list {
    grid-template-columns: 1fr;
  }
  
  .catalog-header-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-wrapper {
    max-width: none;
  }
  
  .catalog-controls-right {
    justify-content: space-between;
  }
}




