/* ==========================================================================
   SYNERGY PAINTS - BRIGHT LUXURY DESIGN SYSTEM (SPA VERSION)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Variables - Pure Light Luxury */
  --color-bg-ivory: #FDFBF7;
  --color-bg-pearl: #F7F5F0;
  --color-bg-cream: #FAF9F5;
  --color-bg-white: #FFFFFF;
  
  --color-gold: #C59B27;
  --color-gold-dark: #A6801C;
  --color-gold-light: #F6F1E5;
  --color-gold-border: rgba(197, 155, 39, 0.2);
  
  --color-text-dark: #2C2D30;
  --color-text-muted: #7A7F85;
  --color-border-light: rgba(197, 155, 39, 0.12);
  
  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  --header-height: 80px;
  --max-width: 1280px;
}

/* Reset base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-ivory);
  color: var(--color-text-dark);
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  background-color: var(--color-bg-ivory);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

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

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

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

svg {
  max-width: 100%;
}

svg.luxury-icon {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
}

/* Custom light scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-pearl);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 0px;
}

/* Base Layout Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* General Section Typography & Spacing */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title-wrapper {
  margin-bottom: 4rem;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  font-weight: 700;
  display: inline-block;
}

.section-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
}

.section-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.section-lead-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 1rem auto 0 auto;
  line-height: 1.7;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 1px solid rgba(44, 45, 48, 0.25);
}

.btn-secondary:hover {
  background-color: var(--color-text-dark);
  color: var(--color-bg-white);
  border-color: var(--color-text-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   SITE NAVIGATION HEADER
   ========================================================================== */
header#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition-smooth);
}

header#site-header.scrolled {
  height: 70px;
  background: rgba(253, 251, 247, 0.96);
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-img {
  max-height: 46px;
  width: auto;
  display: block;
}

header#site-header.scrolled .logo-img {
  max-height: 38px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44, 45, 48, 0.75);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

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

@media (max-width: 1200px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-pearl);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    transition: var(--transition-smooth);
    box-shadow: -15px 0 40px rgba(197, 155, 39, 0.05);
  }
  .nav-menu.active {
    right: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-cta {
    display: none;
  }
}

/* ==========================================================================
   SPA VIEWS CONFIGURATION
   ========================================================================== */
main#app-content {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  position: relative;
}

.app-view {
  opacity: 0;
  transform: translateY(15px);
  display: none;
  animation: fadeInView 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.app-view:not(.hidden) {
  display: block;
}

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

/* ==========================================================================
   VIEW 1: HOME PAGE
   ========================================================================== */

/* Hero Section */
.hero-section {
  height: calc(90vh - var(--header-height));
  min-height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 10s ease;
}

.hero-section:hover .hero-background {
  transform: scale(1.03);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-textbox {
  max-width: 580px;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 4rem;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 6rem 0;
  }
  .hero-textbox {
    padding: 2.5rem;
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Our Solutions */
.home-solutions {
  background-color: var(--color-bg-ivory);
}

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

.solution-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.05);
}

.solution-icon {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.solution-card .luxury-icon {
  width: 42px;
  height: 42px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-fast);
}

.solution-card:hover .luxury-icon {
  transform: scale(1.1);
  stroke: var(--color-gold-dark);
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-text-dark);
}

.solution-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    padding: 2.5rem 1.5rem;
  }
}

/* Signature Collections */
.home-collections {
  background-color: var(--color-bg-pearl);
}

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

.signature-card {
  height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  cursor: pointer;
}

.signature-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
}

.signature-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 45, 48, 0.85) 0%, rgba(44, 45, 48, 0.1) 70%);
  transition: var(--transition-smooth);
  z-index: 2;
}

.signature-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 3;
  color: var(--color-bg-white);
  transition: var(--transition-smooth);
  transform: translateY(20px);
}

.signature-card .card-info .card-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.signature-card .card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--color-bg-white);
}

.signature-card .card-info p {
  font-size: 0.88rem;
  opacity: 0;
  transition: var(--transition-smooth);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.signature-card:hover .card-bg {
  transform: scale(1.05);
}

.signature-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(44, 45, 48, 0.92) 0%, rgba(44, 45, 48, 0.3) 60%);
}

.signature-card:hover .card-info {
  transform: translateY(0);
}

.signature-card:hover .card-info p {
  opacity: 1;
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }
  .signature-card {
    height: 320px;
  }
}

/* Room Inspiration Switcher */
.category-tabs-grid {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-tab-btn {
  background: var(--color-bg-white);
  border: 1px solid rgba(197, 155, 39, 0.15);
  color: var(--color-text-dark);
  padding: 0.6rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.category-tab-btn:hover,
.category-tab-btn.active {
  background-color: var(--color-gold);
  color: var(--color-bg-white);
  border-color: var(--color-gold);
}

.inspiration-preview-box {
  display: flex;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
}

.preview-img-wrapper {
  flex: 1.3;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-right: 1px solid var(--color-border-light);
}

.preview-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.preview-details {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-details .insp-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.preview-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.preview-details p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.preview-details .btn {
  align-self: flex-start;
}

@media (max-width: 992px) {
  .inspiration-preview-box {
    flex-direction: column;
  }
  .preview-img-wrapper {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
  }
  .preview-details {
    padding: 2.5rem;
  }
}

/* Why Synergy */
.home-why {
  background-color: var(--color-bg-pearl);
}

.why-flex-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.why-card-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.why-card-box:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.06);
}

.icon-holder {
  margin-bottom: 1.25rem;
  display: inline-block;
}

.icon-holder .luxury-icon {
  width: 44px;
  height: 44px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-fast);
}

.why-card-box:hover .luxury-icon {
  transform: scale(1.1);
  stroke: var(--color-gold-dark);
}

.why-card-box h4 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

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

@media (max-width: 1200px) {
  .why-flex-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 576px) {
  .why-flex-grid {
    grid-template-columns: 1fr;
  }
}

/* Shine & Care Teaser Section */
.home-shine-care-teaser {
  background-color: var(--color-bg-ivory);
}

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

.teaser-card {
  border: 1px solid var(--color-border-light);
  padding: 4.5rem 3.5rem;
  background-color: var(--color-bg-white);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.teaser-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: var(--transition-fast);
}

.teaser-card.shine-theme::before {
  background-color: var(--color-gold);
}

.teaser-card.care-theme::before {
  background-color: #2F483A;
}

.teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.03);
}

.teaser-card.shine-theme:hover {
  border-color: var(--color-gold);
}

.teaser-card.care-theme:hover {
  border-color: #2F483A;
}

.teaser-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.shine-theme .teaser-subtitle {
  color: var(--color-gold);
}

.care-theme .teaser-subtitle {
  color: #2F483A;
}

.teaser-card h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.teaser-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.teaser-card .btn {
  align-self: flex-start;
}

@media (max-width: 992px) {
  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .teaser-card {
    padding: 3rem 2rem;
  }
}

/* Before & After Slider */
.bright-slider-wrapper {
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.bright-comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  user-select: none;
}

.bright-comparison-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.bright-image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.bright-image-after img {
  width: 850px; /* Fixed width matching the slider container */
  max-width: none;
}

/* Handle responsive image width alignment inside crop container */
@media(max-width: 850px) {
  .bright-image-after img {
    width: 100vw;
  }
}

.slide-badge {
  position: absolute;
  top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  z-index: 3;
}

.badge-after {
  right: 1.5rem;
  background-color: var(--color-gold);
  color: var(--color-bg-white);
}

.badge-before {
  left: 1.5rem;
  background-color: rgba(44, 45, 48, 0.8);
  color: var(--color-bg-white);
}

.bright-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--color-gold);
  z-index: 4;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.bright-slider-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-gold);
  color: var(--color-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* Dealer CTA Box */
.dealer-cta-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 5rem 4rem;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.dealer-cta-box:hover {
  transform: scale(1.01);
  border-color: var(--color-gold);
  box-shadow: 0 20px 45px rgba(197, 155, 39, 0.05);
}

.dealer-cta-box h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.dealer-cta-box h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.dealer-cta-box p {
  color: var(--color-text-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

.dealer-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .dealer-cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .dealer-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .dealer-cta-box {
    padding: 3rem 1.5rem;
  }
  .dealer-cta-box h2 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   VIEW 2: ABOUT US (REWRITTEN 10-SECTION LAYOUT)
   ========================================================================== */

/* 1. Hero Section */
.about-hero {
  height: 60vh;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 251, 247, 0.75);
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
}

.about-hero-textbox {
  max-width: 650px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 4rem;
  border: 1px solid var(--color-border-light);
}

.about-hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.about-hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    padding: 6rem 0;
  }
  .about-hero-textbox {
    padding: 2.5rem;
    max-width: 100%;
  }
  .about-hero-title {
    font-size: 2.4rem;
  }
}

/* 2. Company Story */
.about-story {
  background-color: var(--color-bg-white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-text-side h2 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 2rem;
}

.story-text-side h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.story-p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.story-p:last-child {
  margin-bottom: 0;
}

.story-image-side {
  position: sticky;
  top: 110px;
  align-self: start;
}

.editorial-about-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  display: block;
}

@media (max-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-image-side {
    position: relative;
    top: 0;
  }
}

/* 3. Vision & Mission */
.about-vision-mission {
  background-color: var(--color-bg-pearl);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.vision-card,
.mission-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3.5rem;
  transition: var(--transition-smooth);
}

.vision-card:hover,
.mission-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.04);
}

.vm-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.vision-card h3,
.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vision-card,
  .mission-card {
    padding: 2.5rem 1.5rem;
  }
}

/* 4. What We Do */
.about-capabilities {
  background-color: var(--color-bg-white);
}

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

.capability-item {
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  padding: 2.5rem 1.8rem;
  transition: var(--transition-smooth);
}

.capability-item:hover {
  background-color: var(--color-bg-white);
  border-color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 155, 39, 0.03);
}

.capability-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.capability-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

/* 5. Manufacturing Excellence */
.about-manufacturing {
  background-color: var(--color-bg-pearl);
}

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

.mfg-text h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.mfg-text h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.mfg-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.mfg-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mfg-stat-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-text-dark);
}

.mfg-map-svg {
  border: 1px solid var(--color-border-light);
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

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

@media (max-width: 576px) {
  .mfg-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* 6. Why Choose Synergy */
.about-why {
  background-color: var(--color-bg-white);
}

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

.why-item {
  position: relative;
  padding-left: 3.5rem;
}

.why-badge {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-gold);
  font-weight: 600;
  line-height: 1;
}

.why-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* 7. Texture Innovation */
.about-textures-innov {
  background-color: var(--color-bg-pearl);
}

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

.about-innov-img {
  border: 1px solid var(--color-border-light);
  width: 100%;
  height: auto;
}

.innov-text h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.innov-text h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.innov-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.innov-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.innov-bullets-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.innov-bullets-list li::before {
  content: '■';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-gold);
  font-size: 0.75rem;
}

.innov-bullets-list li strong {
  display: block;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 0.2rem;
}

@media (max-width: 992px) {
  .innov-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .innov-layout-grid .innov-image-frame {
    order: 2;
  }
}

/* 8. Shine & Care Ecosystem */
.about-shine-care-platform {
  background-color: var(--color-bg-white);
}

.shine-care-about-card {
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  padding: 5rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sc-about-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 1.5rem 0 3.5rem 0;
}

.sc-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.sc-feat-col h5 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  border-bottom: 1.5px solid var(--color-gold-border);
  padding-bottom: 0.4rem;
}

.sc-feat-col p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .sc-features-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .shine-care-about-card {
    padding: 3rem 2rem;
  }
}

/* 9. Dealer & Professional Network */
.about-network {
  background-color: var(--color-bg-pearl);
}

.network-flex-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.network-stat-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
}

.network-stat-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.04);
}

.network-stat-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

.network-stat-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .network-flex-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 10. Call To Action */
.about-cta {
  background-color: var(--color-bg-white);
  padding: 7rem 0;
}

.about-cta-card {
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  padding: 5rem;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.about-cta-card h2 {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
}

.about-cta-card h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.about-cta-card p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about-cta-card {
    padding: 3rem 1.5rem;
  }
  .about-cta-card h2 {
    font-size: 1.8rem;
  }
  .about-cta-btns {
    flex-direction: column;
    gap: 1rem;
  }
  .about-cta-btns .btn {
    width: 100%;
  }
}

/* ==========================================================================
   VIEW 3: PRODUCTS CATALOG Redesign
   ========================================================================== */
.products-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.products-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 251, 247, 0.75);
  z-index: 1;
}

.products-hero-container {
  position: relative;
  z-index: 2;
}

.products-hero-textbox {
  max-width: 650px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 4rem;
  border: 1px solid var(--color-border-light);
}

.products-hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.products-hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.products-hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .products-hero {
    height: auto;
    padding: 6rem 0;
  }
  .products-hero-textbox {
    padding: 2.5rem;
    max-width: 100%;
  }
  .products-hero-title {
    font-size: 2.4rem;
  }
}

/* Featured Category: Decorative Textures */
.featured-textures-section {
  background-color: var(--color-bg-white);
  padding: 6rem 0;
}

.featured-texture-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  align-items: stretch;
}

.featured-texture-image-side {
  position: relative;
  min-height: 500px;
}

.featured-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background-color: var(--color-gold);
  color: var(--color-bg-ivory);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  padding: 0.6rem 1.2rem;
  z-index: 5;
}

.featured-texture-text-side {
  padding: 5rem 4rem 5rem 0;
}

.featured-category-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.featured-products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  margin-bottom: 3.5rem;
}

.featured-product-item h5 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 0.5rem;
}

.featured-product-item p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .featured-texture-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-texture-image-side {
    min-height: 350px;
  }
  .featured-texture-text-side {
    padding: 3.5rem 2.5rem;
  }
  .featured-products-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Grid of Categories */
.products-grid-section {
  background-color: var(--color-bg-pearl);
  padding: 6rem 0;
}

.new-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
}

.new-product-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.new-product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.05);
}

.new-product-card .card-photo {
  height: 280px;
  border-bottom: 1px solid var(--color-border-light);
}

.new-product-card .card-details {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.new-product-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.new-product-card .card-intro-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.card-products-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.card-products-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card-products-bullet-list li::before {
  content: '■';
  position: absolute;
  top: 0.1rem;
  left: 0;
  color: var(--color-gold);
  font-size: 0.7rem;
}

.card-products-bullet-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 0.15rem;
}

.card-action-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Waterproofing Card Override (Complete System Presentation) */
.waterproofing-system-card {
  background-color: var(--color-bg-cream);
  border-color: rgba(197, 155, 39, 0.4);
}

.waterproofing-system-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(197, 155, 39, 0.08);
}

.card-top-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 0.6rem;
}

@media (max-width: 992px) {
  .new-products-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .new-product-card .card-details {
    padding: 2.5rem 2rem;
  }
}

/* ==========================================================================
   VIEW 4: TEXTURE STUDIO Redesign
   ========================================================================== */
#view-textures {
  --studio-white: #FFFFFF;
  --studio-offwhite: #FAF9F6;
  --studio-charcoal: #1E1F22;
  --studio-silver: #A8B2C1;
  --studio-silver-light: rgba(168, 178, 193, 0.12);
  --studio-silver-border: rgba(168, 178, 193, 0.25);
  background-color: var(--studio-white);
  color: var(--studio-charcoal);
}

/* Texture Hero Section */
.texture-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid var(--studio-silver-border);
}

.texture-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.texture-hero-container {
  position: relative;
  z-index: 2;
}

.texture-hero-textbox {
  max-width: 650px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 4rem;
  border: 1px solid var(--studio-silver-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.texture-hero-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--studio-charcoal);
}

.texture-hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--studio-silver);
}

.texture-hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.texture-hero-actions {
  margin-top: 2rem;
}

/* Texture Gallery Grid */
.texture-gallery-section {
  background-color: var(--studio-white);
  padding: 6rem 0;
}

.texture-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.texture-filter-btn {
  background-color: var(--studio-offwhite);
  border: 1px solid var(--studio-silver-border);
  color: var(--studio-charcoal);
  padding: 0.6rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 0px;
  transition: var(--transition-fast);
}

.texture-filter-btn:hover,
.texture-filter-btn.active {
  background-color: var(--studio-charcoal);
  color: var(--studio-white);
  border-color: var(--studio-charcoal);
}

.textures-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.studio-texture-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background-color: var(--studio-offwhite);
  border: 1px solid var(--studio-silver-border);
  transition: var(--transition-smooth);
}

.studio-texture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--studio-silver);
}

.studio-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-texture-card:hover .studio-card-img {
  transform: scale(1.08);
}

.studio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 31, 34, 0.95) 0%, rgba(30, 31, 34, 0.2) 65%, rgba(30, 31, 34, 0) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.studio-texture-card:hover .studio-card-overlay {
  opacity: 1;
}

.studio-card-overlay-text h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--studio-white);
  margin-bottom: 0.4rem;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-texture-card:hover .studio-card-overlay-text h4 {
  transform: translateY(0);
}

.overlay-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--studio-silver);
  font-weight: 600;
  display: inline-block;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.studio-texture-card:hover .studio-card-overlay-text .overlay-tag {
  transform: translateY(0);
}

/* Detail Popup Modal */
.texture-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 31, 34, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.texture-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.texture-modal-container {
  background-color: var(--studio-white);
  width: 90%;
  max-width: 960px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  animation: modalScaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.texture-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  color: var(--studio-charcoal);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

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

.texture-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.texture-modal-image-side {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}

.texture-modal-info-side {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--studio-white);
}

.modal-finish-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--studio-silver);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.texture-modal-info-side h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  color: var(--studio-charcoal);
}

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

.modal-meta-box {
  border-top: 1px solid var(--studio-silver-border);
  border-bottom: 1px solid var(--studio-silver-border);
  padding: 1.5rem 0;
  margin-bottom: 2.5rem;
}

.modal-meta-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--studio-charcoal);
  margin-bottom: 0.3rem;
}

.modal-meta-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.modal-actions-row {
  display: flex;
}

/* Lead Generation Section */
.texture-lead-section {
  background-color: var(--studio-offwhite);
  padding: 6rem 0;
}

.texture-lead-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--studio-white);
  border: 1px solid var(--studio-silver-border);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
  padding: 5rem 4.5rem;
}

.texture-lead-content {
  text-align: center;
}

.texture-lead-content h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--studio-charcoal);
}

.texture-lead-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.65;
}

.texture-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.texture-lead-form.hidden {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background-color: var(--studio-offwhite);
  border: 1px solid var(--studio-silver-border);
  color: var(--studio-charcoal);
  border-radius: 0;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--studio-charcoal);
  background-color: var(--studio-white);
}

.form-group select {
  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='%231E1F22' stroke-width='1.5' 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 1.5rem center;
  background-size: 1rem;
  cursor: pointer;
}

.form-submit-row {
  margin-top: 1.5rem;
}

.lead-submit-btn {
  width: 100%;
  background-color: var(--studio-charcoal);
  color: var(--studio-white);
  border-color: var(--studio-charcoal);
}

.lead-submit-btn:hover {
  background-color: transparent;
  color: var(--studio-charcoal);
  box-shadow: 0 10px 30px rgba(30, 31, 34, 0.12);
}

/* Success Message */
.lead-success-msg {
  padding: 3rem 1.5rem;
  animation: fadeIn 0.5s ease;
}

.lead-success-msg.hidden {
  display: none;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: var(--studio-silver-light);
  color: var(--studio-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem auto;
  border: 1px solid var(--studio-silver-border);
}

.lead-success-msg h4 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--studio-charcoal);
}

.lead-success-msg p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Final CTA Section */
.texture-final-cta {
  padding: 8rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

.texture-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  z-index: 1;
}

.texture-cta-container {
  position: relative;
  z-index: 2;
}

.texture-cta-textbox {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.texture-cta-textbox h2 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--studio-charcoal);
}

.texture-cta-textbox h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--studio-silver);
}

.texture-cta-textbox p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Media Queries for Texture Studio */
@media (max-width: 992px) {
  .textures-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .texture-modal-grid {
    grid-template-columns: 1fr;
  }
  .texture-modal-image-side {
    min-height: 250px;
  }
  .texture-modal-info-side {
    padding: 3rem 2.5rem;
  }
  .texture-lead-card {
    padding: 4rem 2.5rem;
  }
  .texture-cta-textbox h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .textures-catalog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .texture-hero-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   INTERIOR CLICK SHOWCASE SECTION (Interactive Product Showcase)
   ========================================================================== */
.interior-click-showcase-section {
  background-color: #FDFDFD;
  padding: 100px 0;
  overflow: hidden;
}

.interior-click-showcase-wrapper {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 50px;
  align-items: flex-start;
}

/* Left Panel: Description and Cards */
.interior-click-showcase-section .showcase-header {
  margin-bottom: 35px;
}

.interior-click-showcase-section .showcase-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111111;
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  margin: 10px 0 15px 0;
}

.interior-click-showcase-section .showcase-title span {
  color: #C59B27; /* Gold brand accent */
}

.interior-click-showcase-section .showcase-series-desc {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

.interior-product-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.int-product-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 18px 24px;
  cursor: pointer;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  width: 100%;
}

.int-product-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(9, 66, 115, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.int-product-card.active {
  background: #FFFFFF;
  border: 2px solid #094273; /* Synergy Blue Accent Border */
  box-shadow: 0 12px 30px rgba(9, 66, 115, 0.12);
  transform: scale(1.02);
}

.int-card-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.int-product-card:hover .int-card-color-dot {
  transform: scale(1.15);
}

.int-card-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.int-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  font-family: 'Inter', sans-serif;
}

.int-card-finish {
  font-size: 0.8rem;
  color: #888888;
  font-weight: 500;
}

.int-card-arrow {
  color: #CCCCCC;
  font-size: 0.9rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.int-product-card:hover .int-card-arrow {
  color: #094273;
  transform: translateX(3px);
}

.int-product-card.active .int-card-arrow {
  color: #094273;
  transform: translateX(4px);
}

/* Right Panel: Room simulator with glass overlay */
.interior-right-panel {
  width: 100%;
}

.interior-details-container {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  perspective: 1500px; /* 3D Perspective Context */
}

.interior-details-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* 50/50 details grid layout */
  min-height: 600px;
  transform-style: preserve-3d;
}

.interior-image-frame-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #F0EDE8;
  transform-style: preserve-3d;
}

.int-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the left panel space beautifully */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  transform: translateZ(40px) scale(1.05); /* 3D depth pop */
  display: block;
}

.int-frame-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.interior-image-frame-wrapper.hovered .int-frame-glare {
  opacity: 1;
}

.int-product-info-wrapper {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
  transform-style: preserve-3d;
  transform: translateZ(20px);
}

/* Responsive Overrides for 50/50 Details Grid */
@media (max-width: 992px) {
  .interior-click-showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .interior-details-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .interior-image-frame-wrapper {
    height: 450px;
  }
  
  .int-product-info-wrapper {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .interior-click-showcase-section {
    padding: 60px 0;
  }

  .interior-product-cards-stack {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
  }
  
  .int-product-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    padding: 12px 18px;
    gap: 12px;
  }
  
  .int-card-name {
    font-size: 0.95rem;
  }
  
  .int-card-finish {
    font-size: 0.75rem;
  }
  
  .interior-image-frame-wrapper {
    height: 320px;
  }
}



/* ==========================================================================
   VIEW 5: SHINE & CARE Painting Service
   ========================================================================== */
.shine-care-info {
  background-color: var(--color-bg-ivory);
}

.services-range-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-range-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.range-header {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  border-bottom: 2px solid;
  padding-bottom: 0.6rem;
  margin-bottom: 2.5rem;
}

.range-header.shine {
  border-color: var(--color-gold);
}

.range-header.care {
  border-color: #2F483A;
}

.range-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.range-list li strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 0.3rem;
}

.range-list li p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.comparison-container {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3.5rem;
  margin-top: 5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.comparison-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.table-scroll-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.88rem;
}

.comparison-table th {
  background-color: var(--color-bg-pearl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}

.comparison-table tr:hover {
  background-color: var(--color-bg-cream);
}

@media (max-width: 992px) {
  .services-range-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-range-box {
    padding: 2rem 1.25rem;
  }
  .comparison-container {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   VIEW 6: COLOR STUDIO
   ========================================================================== */
.color-studio-section {
  background-color: var(--color-bg-ivory);
}

.color-studio-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.studio-visualizer-left {
  background-color: #FAF9F5;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 15px 35px rgba(0,0,0,0.02);
}

.visualizer-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.studio-room-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.visualizer-overlay-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(253, 251, 247, 0.95);
  border-left: 3px solid var(--color-gold);
  padding: 0.8rem 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.selected-color-meta {
  font-size: 0.65rem;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.selected-color-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-dark);
}

/* Swatches Controls */
.studio-color-categories {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.color-cat-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.color-cat-btn::after {
  content: '';
  position: absolute;
  bottom: -0.7rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.color-cat-btn:hover,
.color-cat-btn.active {
  color: var(--color-gold);
}

.color-cat-btn.active::after {
  width: 100%;
}

.color-studio-swatches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  min-height: 220px;
  margin-bottom: 2.5rem;
}

.flat-swatch-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.flat-swatch-card:hover {
  background-color: var(--color-bg-pearl);
}

.flat-swatch-card.active {
  border-color: var(--color-gold);
  background-color: var(--color-gold-light);
}

.swatch-round-preview {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.swatch-txt-label {
  display: flex;
  flex-direction: column;
}

.swatch-title-txt {
  font-size: 0.9rem;
  font-weight: 600;
}

.swatch-desc-txt {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.studio-ctas {
  display: flex;
  gap: 1rem;
}

.studio-ctas .btn {
  flex: 1;
}

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

@media (max-width: 576px) {
  .color-studio-swatches-grid {
    grid-template-columns: 1fr;
  }
  .studio-ctas {
    flex-direction: column;
  }
}

/* ==========================================================================
   VIEW 7: INSPIRATION GALLERY
   ========================================================================== */
.inspiration-gallery-page {
  background-color: var(--color-bg-pearl);
}

.gallery-category-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
  padding: 0.5rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--color-gold);
  color: var(--color-bg-white);
  border-color: var(--color-gold);
}

/* Masonry Grid Layout */
.inspiration-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.5rem;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  cursor: pointer;
}

.masonry-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item.tall {
  grid-row: span 2;
}

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

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 45, 48, 0.85) 0%, rgba(44, 45, 48, 0.1) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
  color: var(--color-bg-white);
}

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

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-overlay span {
  font-size: 0.7rem;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.masonry-overlay h4 {
  font-size: 1.3rem;
  color: var(--color-bg-white);
}

@media (max-width: 992px) {
  .inspiration-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .masonry-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .inspiration-masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .masonry-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .masonry-item.tall {
    grid-row: span 1;
  }
}

/* ==========================================================================
   VIEW 8: DEALERS PAGE
   ========================================================================== */
.dealers-locator-section {
  background-color: var(--color-bg-ivory);
}

.dealers-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.dealers-locator-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3.5rem;
}

.dealers-lead {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.dealer-dropdowns-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.dealer-select-box {
  flex: 1;
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  cursor: pointer;
  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='%23C59B27' 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 1.2rem center;
  background-size: 1.1rem;
}

.dealer-select-box:disabled {
  background-color: var(--color-bg-pearl);
  cursor: not-allowed;
  opacity: 0.6;
}

.store-results-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 180px;
}

.no-selection-msg {
  text-align: center;
  color: var(--color-text-muted);
  font-style: italic;
  padding: 3rem 0;
  font-size: 0.9rem;
  border: 1px dashed var(--color-border-light);
}

.dealer-store-card {
  border: 1px solid var(--color-border-light);
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.dealer-store-card:hover {
  border-color: var(--color-gold);
}

.dealer-store-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.dealer-store-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.dealer-nav-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}

/* Become a Partner */
.become-dealer-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3.5rem;
}

.box-header {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-gold-border);
  padding-bottom: 0.5rem;
}

.box-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.become-dealer-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.dealer-input-field,
.dealer-input-textarea {
  width: 100%;
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.dealer-input-field:focus,
.dealer-input-textarea:focus {
  border-color: var(--color-gold);
  background-color: var(--color-bg-white);
}

.form-submit-btn {
  width: 100%;
}

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

@media (max-width: 576px) {
  .dealer-dropdowns-row,
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
  .dealers-locator-box,
  .become-dealer-box {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   VIEW 9: PROFESSIONALS
   ========================================================================== */
.professionals-section {
  background-color: var(--color-bg-pearl);
}

.professionals-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.downloads-column h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.download-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.download-item-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.download-item-card:hover {
  border-color: var(--color-gold);
}

.card-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.card-details p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card-download-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}

/* Project Support Form */
.support-form-column {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3.5rem;
}

.support-form-column h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-gold-border);
  padding-bottom: 0.5rem;
}

.support-form-column p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 2.2rem;
}

.support-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.support-input,
.support-textarea {
  width: 100%;
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.support-input:focus,
.support-textarea:focus {
  border-color: var(--color-gold);
  background-color: var(--color-bg-white);
}

.support-btn {
  width: 100%;
}

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

@media (max-width: 768px) {
  .download-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .card-download-btn {
    width: 100%;
  }
  .support-form-column {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   VIEW 10: BLOGS
   ========================================================================== */
.blogs-section {
  background-color: var(--color-bg-ivory);
}

.blogs-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.blog-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
}

.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--color-border-light);
}

.blog-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.7rem;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.blog-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.blog-link {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.blog-link:hover {
  color: var(--color-text-dark);
  padding-left: 4px;
}

@media (max-width: 768px) {
  .blogs-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-body {
    padding: 1.8rem;
  }
}

/* ==========================================================================
   VIEW 11: CONTACT US
   ========================================================================== */
.contact-section {
  background-color: var(--color-bg-pearl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-details-box {
  display: flex;
  flex-direction: column;
}

.contact-lead-text {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.info-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.info-item span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.whatsapp-btn-row {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 0.8rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
  align-self: flex-start;
  transition: var(--transition-fast);
}

.whatsapp-btn-row:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  color: #FFFFFF;
}

.wa-icon {
  font-size: 1.1rem;
}

/* Vector Map Mockup */
.map-container-mock {
  border: 1px solid var(--color-border-light);
  background-color: var(--color-bg-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.map-title-bar {
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
}

.map-visual-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
}

/* Inquiry Form */
.contact-forms-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  padding: 3.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.02);
}

.form-header-title {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  border-bottom: 1.5px solid var(--color-gold);
  padding-bottom: 0.5rem;
}

.contact-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-inquiry-form label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: -0.4rem;
  color: var(--color-text-dark);
}

.contact-select,
.contact-input,
.contact-textarea {
  background-color: var(--color-bg-cream);
  border: 1px solid var(--color-border-light);
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.contact-select {
  cursor: pointer;
  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='%23C59B27' 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 1.2rem center;
  background-size: 1.1rem;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--color-gold);
  background-color: var(--color-bg-white);
}

.contact-form-row {
  display: flex;
  gap: 1rem;
}

.contact-form-row .input-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-submit {
  margin-top: 1rem;
  width: 100%;
}

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

@media (max-width: 768px) {
  .contact-forms-box {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .contact-form-row {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background-color: var(--color-bg-pearl);
  border-top: 1px solid var(--color-border-light);
  padding: 5rem 0 2rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-column .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-gold-dark);
}

.footer-about-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 320px;
}

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

.footer-links-column h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-dark);
}

.footer-links-list,
.footer-nav-links-stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a,
.footer-nav-links-stack a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.footer-links-list a:hover,
.footer-nav-links-stack a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid var(--color-border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal-links a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(35px);
}

.reveal-left {
  transform: translateX(-35px);
}

.reveal-right {
  transform: translateX(35px);
}

.reveal-scale {
  transform: scale(0.96);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   11. EXTERIOR SHOWCASE SECTION
   ========================================================================== */
.exterior-showcase-section {
  background-color: #FAF8F5; /* Warm off-white luxury brand background */
  padding: 100px 0;
  border-top: 1px solid rgba(197, 155, 39, 0.1);
  border-bottom: 1px solid rgba(197, 155, 39, 0.1);
}

.exterior-tabs-wrapper {
  margin: 40px 0 50px 0;
  display: flex;
  justify-content: center;
}

.exterior-tabs-container {
  display: flex;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.exterior-tab {
  background: transparent;
  border: none;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666666;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: capitalize;
}

.exterior-tab:hover {
  color: #000000;
}

.exterior-tab.active {
  background-color: #C59B27; /* Synergy brand gold */
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(197, 155, 39, 0.2);
}

.exterior-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

/* Left Panel: Villa Preview */
.villa-preview-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.villa-image-container {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #F0EDE8;
}

.villa-base-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.villa-preview-card:hover .villa-base-img {
  transform: scale(1.03);
}

.villa-color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.villa-caption {
  padding: 15px 5px 5px 5px;
  font-size: 0.85rem;
  color: #888888;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.villa-caption i {
  color: #C59B27;
}

/* Right Panel: Product Specs Card */
.exterior-details-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.exterior-details-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.exterior-details-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.ext-bucket-wrapper {
  width: 110px;
  height: 110px;
  background: #FDFCFB;
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}

.ext-bucket-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.exterior-details-card:hover .ext-bucket-img {
  transform: scale(1.08) rotate(2deg);
}

.ext-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ext-series-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C59B27;
  font-weight: 700;
}

.ext-product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  transition: opacity 0.4s ease;
}

.exterior-product-desc {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  transition: opacity 0.4s ease;
}

.exterior-features-section {
  margin-bottom: 35px;
}

.exterior-features-section h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

.ext-features-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  transition: opacity 0.4s ease;
}

.ext-feature-chip {
  background: #F5F3EE;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444444;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.ext-feature-chip:hover {
  background: #FFFFFF;
  border-color: rgba(197, 155, 39, 0.3);
  color: #C59B27;
  transform: translateY(-2px);
}

.exterior-action-section {
  margin-top: 30px;
}

.ext-cta-btn {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .exterior-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .villa-image-container {
    height: 380px;
  }
  .exterior-details-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .exterior-tab {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  .villa-image-container {
    height: 280px;
  }
  .exterior-details-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .ext-product-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   METALLIC PAINTS SHOWCASE SECTION
   ========================================================================== */
.metallic-paints-section {
  background-color: #F8F9FA;
  padding: 100px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.metallic-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.metallic-product-card {
  background-color: var(--color-bg-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
}

/* Metallic top-border shimmer gradient accent */
.metallic-card-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #D4AF37 0%, #FAF0CD 50%, #D4AF37 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.metallic-image-wrapper {
  height: 280px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-cream);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.metallic-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  filter: contrast(1.06) brightness(1.03) saturate(1.03);
}

.metallic-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.metallic-info h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.metallic-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  /* Exactly 2 lines clamping */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.88rem; /* height based on line-height: 1.6 and size: 0.9rem */
}

.btn-metallic-details {
  background-color: #C62828;
  color: var(--color-bg-white);
  border: 1.5px solid #C62828;
  padding: 0.85rem 1.8rem;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.15);
}

/* Card Hover States */
.metallic-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(198, 40, 40, 0.08);
}

.metallic-product-card:hover .metallic-img {
  transform: scale(1.06) rotate(1deg) translateZ(0);
}

.metallic-product-card:hover .btn-metallic-details {
  background-color: transparent;
  color: #C62828;
  border-color: #D4AF37; /* Gold premium highlight */
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
  transform: translateY(-2px);
}

/* ==========================================================================
   METALLIC DETAIL MODAL OVERLAY
   ========================================================================== */
.metallic-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 31, 34, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.metallic-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.metallic-modal-container {
  background-color: var(--color-bg-white);
  width: 90%;
  max-width: 960px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  overflow: hidden;
  animation: modalScaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-border-light);
}

.metallic-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-dark);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.metallic-modal-close:hover {
  color: #C62828;
  transform: rotate(90deg);
}

.metallic-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.metallic-modal-image-side {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-bg-cream);
  min-height: 480px;
  padding: 30px;
}

.metallic-modal-info-side {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg-white);
}

.modal-metallic-series {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.metallic-modal-info-side h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--color-text-dark);
}

.modal-metallic-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.modal-metallic-meta-box {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  display: flex;
  gap: 2.5rem;
}

.modal-metallic-meta-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  margin-bottom: 0.3rem;
}

.modal-metallic-meta-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.modal-metallic-features {
  margin-bottom: 2.5rem;
}

.modal-metallic-features strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}

.modal-metallic-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding-left: 0;
}

.modal-metallic-features li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.modal-metallic-actions {
  display: flex;
}

/* ==========================================================================
   METALLIC RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 992px) {
  .metallic-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .metallic-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .metallic-modal-image-side {
    min-height: 320px;
  }
  
  .metallic-modal-info-side {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .metallic-paints-section {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  .metallic-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .metallic-image-wrapper {
    height: 240px;
  }
  
  .btn-metallic-details {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   WATERPROOFING SOLUTIONS SHOWCASE SECTION
   ========================================================================== */
.waterproofing-section {
  background-color: #F7F9FC;
  padding: 100px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.waterproofing-bg-texture {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.waterproofing-bg-texture svg {
  display: block;
  width: 100%;
  height: 120px;
}

.waterproofing-section .container {
  position: relative;
  z-index: 2;
}

.waterproofing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.waterproofing-product-card {
  background-color: var(--color-bg-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.03);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
}

/* Deep Blue top accent line */
.waterproofing-card-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #1565C0 0%, #90CAF9 50%, #1565C0 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.waterproofing-image-wrapper {
  height: 240px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-cream);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.waterproofing-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  filter: contrast(1.04) brightness(1.02) saturate(1.02);
}

.waterproofing-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.waterproofing-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.waterproofing-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6rem;
}

/* 2x2 Features Grid */
.waterproofing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.8rem;
  border-top: 1px dashed var(--color-border-light);
  padding-top: 1.2rem;
}

.wp-feat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wp-feat-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.wp-feat-item span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.btn-waterproofing-details {
  background-color: #C62828;
  color: var(--color-bg-white);
  border: 1.5px solid #C62828;
  padding: 0.8rem 1.6rem;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.15);
  width: auto;
}

/* Card Hover States */
.waterproofing-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(21, 101, 192, 0.08);
}

.waterproofing-product-card:hover .waterproofing-img {
  transform: scale(1.06) rotate(0.5deg) translateZ(0);
}

.waterproofing-product-card:hover .btn-waterproofing-details {
  background-color: transparent;
  color: #C62828;
  border-color: #1565C0; /* Deep Blue theme highlight */
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   WATERPROOFING DETAIL MODAL OVERLAY
   ========================================================================== */
.waterproofing-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 31, 34, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.waterproofing-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.waterproofing-modal-container {
  background-color: var(--color-bg-white);
  width: 90%;
  max-width: 960px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  overflow: hidden;
  animation: modalScaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-border-light);
}

.waterproofing-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-dark);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.waterproofing-modal-close:hover {
  color: #1565C0;
  transform: rotate(90deg);
}

.waterproofing-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.waterproofing-modal-image-side {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-bg-cream);
  min-height: 480px;
  padding: 40px;
  background-origin: content-box;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.waterproofing-modal-info-side {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg-white);
}

.modal-wp-series {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1565C0;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.waterproofing-modal-info-side h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--color-text-dark);
}

.modal-wp-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.modal-wp-meta-box {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  display: flex;
  gap: 2.5rem;
}

.modal-wp-meta-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  margin-bottom: 0.3rem;
}

.modal-wp-meta-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.modal-wp-features {
  margin-bottom: 2.5rem;
}

.modal-wp-features strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}

.modal-wp-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding-left: 0;
}

.modal-wp-features li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.modal-wp-actions {
  display: flex;
}

/* ==========================================================================
   WATERPROOFING RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1200px) {
  .waterproofing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .waterproofing-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .waterproofing-modal-image-side {
    min-height: 320px;
  }
  
  .waterproofing-modal-info-side {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .waterproofing-section {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  .waterproofing-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .waterproofing-image-wrapper {
    height: 240px;
  }
  
  .btn-waterproofing-details {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   PRIMER COLLECTION SECTION
   ========================================================================== */
.primer-section {
  background-color: #F5F5F5;
  padding: 100px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

/* Blueprint / Coordinate Grid pattern background */
.primer-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(198, 40, 40, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 40, 40, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: center center;
  opacity: 0.85;
}

/* Subtle blueprint lines decorator */
.primer-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 120px;
  height: 2px;
  background: rgba(198, 40, 40, 0.15);
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 1;
}

.primer-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 160px;
  height: 2px;
  background: rgba(198, 40, 40, 0.15);
  transform: rotate(35deg);
  pointer-events: none;
  z-index: 1;
}

.primer-section .container {
  position: relative;
  z-index: 2;
}

.primer-slider-outer {
  position: relative;
  margin-top: 3.5rem;
  padding: 0 4rem; /* Space for arrow buttons */
}

.primer-slider-container {
  overflow: hidden;
  width: 100%;
}

.primer-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.primer-product-card {
  flex: 0 0 calc((100% - (2 * 1.5rem)) / 3); /* Default 3 visible cards */
  box-sizing: border-box;
  background-color: var(--color-bg-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(55, 71, 79, 0.04);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(198, 40, 40, 0.12); /* Thin red accent border */
}

/* Slider Navigation Buttons */
.primer-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-bg-white);
  color: #C62828;
  border: 1px solid rgba(198, 40, 40, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.primer-slider-btn svg {
  display: block;
}

.primer-slider-btn:hover {
  background-color: #C62828;
  color: var(--color-bg-white);
  border-color: #C62828;
  box-shadow: 0 8px 25px rgba(198, 40, 40, 0.2);
}

.primer-slider-btn.prev-btn {
  left: 0;
}

.primer-slider-btn.next-btn {
  right: 0;
}

/* Red top accent line */
.primer-card-accent {
  height: 4px;
  width: 100%;
  background: var(--color-gold);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: background-color 0.4s ease;
}

.primer-image-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-cream);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.primer-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

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

.primer-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #1E293B;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.primer-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.4rem;
}

/* 2x2 Features Grid */
.primer-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  border-top: 1px dashed rgba(55, 71, 79, 0.1);
  padding-top: 1rem;
}

.primer-features .wp-feat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.primer-features .wp-feat-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.primer-features .wp-feat-item span:last-child {
  font-size: 0.72rem;
  font-weight: 600;
  color: #37474F;
  line-height: 1.2;
}

.btn-primer-details {
  background-color: transparent;
  color: #C62828;
  border: 1.5px solid #C62828;
  padding: 0.75rem 1.25rem;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: auto;
}

/* Card Hover States */
.primer-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(198, 40, 40, 0.08);
  border-color: #C62828; /* Border changes to Synergy Red */
}

.primer-product-card:hover .primer-card-accent {
  background: #C62828;
}

.primer-product-card:hover .primer-img {
  transform: scale(1.05) translateZ(0);
}

.primer-product-card:hover .btn-primer-details {
  background-color: #C62828;
  color: var(--color-bg-white);
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   PRIMER DETAIL MODAL OVERLAY
   ========================================================================== */
.primer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 31, 34, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.primer-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.primer-modal-container {
  background-color: var(--color-bg-white);
  width: 90%;
  max-width: 960px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  overflow: hidden;
  animation: modalScaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-border-light);
}

.primer-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-dark);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.primer-modal-close:hover {
  color: #C62828;
  transform: rotate(90deg);
}

.primer-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.primer-modal-image-side {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-bg-cream);
  min-height: 480px;
  padding: 40px;
  background-origin: content-box;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.primer-modal-info-side {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-bg-white);
}

.modal-primer-series {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C62828;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.primer-modal-info-side h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #1E293B;
}

.modal-primer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.modal-primer-meta-box {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  display: flex;
  gap: 2.5rem;
}

.modal-primer-meta-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #37474F;
  margin-bottom: 0.3rem;
}

.modal-primer-meta-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.modal-primer-features {
  margin-bottom: 2.5rem;
}

.modal-primer-features strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #1E293B;
}

.modal-primer-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding-left: 0;
}

.modal-primer-features li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.modal-primer-actions {
  display: flex;
}

/* ==========================================================================
   PRIMER RESPONSIVE OVERRIDES & GENERAL IMPROVEMENTS
   ========================================================================== */
@media (max-width: 1200px) {
  .primer-slider-track .primer-product-card {
    flex: 0 0 calc((100% - (1 * 1.5rem)) / 2); /* 2 visible cards */
  }
}

@media (max-width: 992px) {
  
  .primer-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .primer-modal-image-side {
    min-height: 320px;
  }
  
  .primer-modal-info-side {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .primer-section {
    padding: 70px 0;
  }
    /* Make all section titles scale properly on tablet */
    .section-title {
      font-size: 2.4rem !important;
    }

    .primer-slider-outer {
      padding: 0 2.5rem;
    }

    .primer-slider-btn {
      width: 38px;
      height: 38px;
    }

    .primer-slider-track .primer-product-card {
      flex: 0 0 100%; /* 1 visible card */
    }
  }

@media (max-width: 576px) {
  
  .primer-image-wrapper {
    height: 220px;
  }
  
  .btn-primer-details {
    width: 100%;
    text-align: center;
  }
  
  /* General mobile title adaptation */
  .section-title {
    font-size: 2rem !important;
  }
  
  .section-lead-desc {
    font-size: 0.95rem !important;
    padding: 0 10px;
  }
}

/* Global website mobile & tablet comfort refinements */
@media (max-width: 768px) {
  /* Fix header/nav wrapping */
  .main-nav-wrapper {
    padding: 10px 1.5rem !important;
  }
  
  /* Make grid contents stack comfortably on mobile/tablet */
  .new-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .new-products-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ==========================================================================
   TEXTURE PRODUCTS SECTION
   ========================================================================== */
.texture-products-section {
  background-color: var(--color-bg-ivory);
  padding: 6rem 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.texture-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.texture-prod-card {
  background-color: var(--color-bg-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(55, 71, 79, 0.04);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
}

.texture-prod-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.texture-prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(197, 155, 39, 0.1);
  border-color: rgba(197, 155, 39, 0.3);
}

.texture-prod-card:hover .texture-prod-accent {
  transform: scaleX(1);
}

.texture-prod-image-wrapper {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg-pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border-light);
}

.texture-prod-img {
  max-height: 85%;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.texture-prod-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.texture-prod-info h3 {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

.texture-prod-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.texture-prod-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.texture-prod-info .btn-primer-details {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 6px;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.texture-prod-card:hover .btn-primer-details {
  background-color: var(--color-gold);
  color: var(--color-bg-white);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2);
}

@media (max-width: 1200px) {
  .texture-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .texture-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}