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

:root {
  --color-primary: #C8102E;         /* rich red / brand accent */
  --color-bg-dark: #EADCCB;         /* Warm Beige */
  --color-bg-mid: rgba(234, 220, 203, 0.4); 
  --color-bg-light: #FFF8ED;        
  --color-bg-white: rgba(255, 248, 237, 0.4); 
  --color-text-light: #1A1816;      
  --color-text-dark: #1A1816;       
  --color-text-muted: #443E38;      
  --color-accent-gold: #CBB49D;     /* Tan / gold */
  --color-border: rgba(47, 42, 38, 0.1);
  
  --font-hero: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-brand: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  background-color: #FFF8ED; /* Fallback ivory color */
}

body {
  font-family: var(--font-body);
  background-color: transparent; 
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1.15rem;
  overflow-x: hidden;
  padding-top: 105px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-hero); color: var(--color-text-dark); }
a { text-decoration: none; color: inherit; }

/* LAYOUT */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 100px 0; position: relative; z-index: 10; }
.section-light { background-color: var(--color-bg-white); color: var(--color-text-dark); backdrop-filter: blur(6px); }
.section-light h2, .section-light h3 { color: var(--color-text-dark); }
.section-cream { background-color: var(--color-bg-mid); color: var(--color-text-dark); backdrop-filter: blur(6px); }
.section-cream h2, .section-cream h3 { color: var(--color-text-dark); }

/* CUSTOM UTILS */
.text-center { text-align: center; }
.text-white { color: var(--color-text-dark) !important; }
.section-label {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 500;
}
.accent-line {
  height: 1px;
  width: 60px;
  background-color: var(--color-primary);
  margin: 0 auto 24px auto;
}

/* TYPOGRAPHY */
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.2; margin-bottom: 24px; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background: var(--color-primary);
  color: white;
  border: none;
}
.btn-primary:hover { background: #a00c25; color: white; }

.btn-ghost {
  background: transparent;
  border: 1.5px solid white;
  color: white;
}
.btn-ghost:hover { background: white; color: black; }
.section-light .btn-ghost { border-color: var(--color-text-dark); color: var(--color-text-dark); }
.section-light .btn-ghost:hover { background: var(--color-text-dark); color: white; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 248, 237, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(47, 42, 38, 0.05);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 248, 237, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-top {
  background: var(--color-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}
.nav-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.nav-top a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  transition: opacity 0.3s;
}
.nav-top a:hover {
  opacity: 0.8;
}
.nav-top svg {
  flex-shrink: 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-icon { width: 40px; height: auto; max-height: 40px; object-fit: contain; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  padding: 24px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-text-dark); border-bottom: 2px solid var(--color-primary); }

/* DROPDOWN */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.dropdown-toggle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  padding: 24px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown:hover .dropdown-toggle, .dropdown-toggle.active {
  color: var(--color-text-dark);
  border-bottom: 2px solid var(--color-primary);
}
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}
.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-content a {
  padding: 14px 20px !important;
  border-bottom: 1px solid #f5f5f5 !important;
  color: var(--color-text-muted) !important;
  font-size: 0.95rem !important;
  display: block;
}
.dropdown-content a:last-child {
  border-bottom: none !important;
}
.dropdown-content a:hover {
  background-color: #fafafa;
  color: var(--color-primary) !important;
  border-bottom: 1px solid #f5f5f5 !important;
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle .bar { width: 24px; height: 2px; background: var(--color-text-dark); transition: 0.3s; }
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; height: 100vh;
  background: #111111;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
}
.mobile-menu.open { right: 0; }
.mobile-nav-links { display: flex; flex-direction: column; text-align: center; gap: 30px; }
.mobile-nav-links a {
  font-family: var(--font-hero);
  font-size: 2.5rem;
  color: white;
  transition: color 0.3s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--color-primary); }

/* PRELOADER */
#preloader {
  position: fixed; inset: 0;
  background: var(--color-bg-light);
  z-index: 9999;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  transition: opacity 0.8s cubic-bezier(0.7, 0, 0.3, 1), visibility 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  color: var(--color-text-dark);
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  filter: blur(10px);
}
.preloader-logo {
  width: 150px;
  height: auto;
  margin-bottom: 24px;
  animation: logoFadeIn 1.2s ease forwards, logoPulse 2s infinite ease-in-out 1.2s;
  opacity: 0;
}
#preloader-text {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.9); filter: blur(10px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* GLOBAL CANVAS BACKGROUND */
.hero-canvas-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 1; 
  pointer-events: none;
}
#heroCanvas {
  width: 100%; height: 100%; object-fit: cover;
}

/* HERO SECTION (index.html) */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-overlay-gradient {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(255, 248, 237, 0.5), transparent 80%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.hero-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--color-text-dark);
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}
.hero-subtext {
  max-width: 600px;
  margin: 24px auto;
  color: var(--color-text-dark);
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(255,255,255,0.5);
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 32px; }

/* FEATURE STRIP */
.feature-strip {
  background: var(--color-bg-mid);
  padding: 40px 0;
  backdrop-filter: blur(6px);
  position: relative; z-index: 10;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card { overflow: hidden; }
.feature-img-wrapper {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.feature-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feature-img-wrapper video {
  width: 100%; height: 100%;
  object-fit: contain;
  background-color: var(--color-bg-white);
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-img-wrapper img, .feature-card:hover .feature-img-wrapper video { transform: scale(1.04); }
.feature-text { padding-top: 16px; }
.feature-label { display: block; color: var(--color-primary); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; letter-spacing: 0.1em; }
.feature-desc { color: var(--color-text-muted); font-size: 1.05rem; }

/* SKILLS BANNER */
.skills-banner {
  background: var(--color-bg-mid);
  backdrop-filter: blur(6px);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.skills-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, rgba(47, 42, 38, 0.02) 0px, rgba(47, 42, 38, 0.02) 2px, transparent 2px, transparent 10px);
  z-index: 0; pointer-events: none;
}
.skills-banner h2, .skills-banner h3 { position: relative; z-index: 1; color: var(--color-text-dark); }
.skills-sub { font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.5rem); margin-top: -10px; color: var(--color-text-muted); }

/* ABOUT STRIP */
.about-strip { 
  background: var(--color-bg-white); 
  backdrop-filter: blur(6px); 
  position: relative; z-index: 10;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.icon-card { background: rgba(255, 255, 255, 0.8); padding: 24px; border: 1px solid var(--color-border); box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.icon-card svg { width: 40px; height: 40px; color: var(--color-primary); margin-bottom: 16px; }
.icon-card h4 { font-family: var(--font-body); font-size: 1rem; color: var(--color-text-dark); margin-bottom: 8px; }
.icon-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

/* CERTIFICATIONS */
.cert-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.cert-item {
  filter: grayscale(100%);
  transition: filter 0.3s;
  font-family: var(--font-hero);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 20px;
  border: 1px solid #ddd;
  background: #fafafa;
  min-width: 150px; text-align: center;
}
.cert-item:hover { filter: grayscale(0%); color: var(--color-primary); border-color: var(--color-primary); }

/* FEATURED CATEGORIES */
/* HORIZONTAL SLIDER */
.horizontal-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 40px;
}
.horizontal-slider-track {
  display: flex;
  gap: 40px;
  padding-left: 25vw;
  width: max-content;
  will-change: transform;
}
.slide-card {
  width: 50vw;
  max-width: 600px;
  height: 65vh;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  /* GSAP will control transform, opacity, and filter */
}
.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
}
.slide-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.slide-card.focused .slide-content {
  opacity: 1;
  transform: translateY(0);
}
.slide-content h3 {
  color: white;
  margin-bottom: 8px;
  font-family: var(--font-hero);
  font-size: 2.5rem;
}
.slide-content p {
  color: #eee;
  font-size: 1rem;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .horizontal-slider-track { padding-left: 10vw; gap: 20px; }
  .slide-card { width: 80vw; height: 50vh; }
  .slide-content h3 { font-size: 2rem; }
  .slide-content { left: 20px; bottom: 20px; }
}

/* COLLECTIONS GRID */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.collection-thumb { display: block; aspect-ratio: 1; overflow: hidden; position: relative; }
.collection-thumb img { width: 100%; height: 100%; object-fit: cover; transition: all 0.3s; }
.collection-thumb:hover img { transform: scale(1.08); border: 2px solid var(--color-primary); }

/* WHY CHOOSE US */
.why-choose-us {
  padding: 0;
  background-color: #F7E8DA;
  overflow: hidden;
}
.why-choose-us-img {
  width: 100%;
  height: auto;
  display: block;
}

/* YOUNG & CREATIVE */
.young-creative { 
  background: var(--color-bg-mid); 
  backdrop-filter: blur(6px); 
  position: relative; z-index: 10;
}
.yc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.yc-icon { font-size: 3rem; margin-bottom: 20px; }
.yc-item h4 { font-size: 1.5rem; margin-bottom: 12px; font-family: var(--font-hero); color: var(--color-text-dark); }
.yc-item p { color: var(--color-text-muted); }

/* PARTNERS */
.partners-strip {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 30px;
  margin-top: 40px;
}
.partner-logo {
  font-family: var(--font-hero); font-size: 1.8rem; font-weight: 700; color: #888;
  filter: grayscale(100%); transition: 0.3s;
}
.partner-logo:hover { filter: grayscale(0%); color: var(--color-text-dark); }
.partner-divider { width: 1px; height: 40px; background: #ddd; }

/* FEEDBACK CAROUSEL */
.testimonials-carousel { position: relative; max-width: 800px; margin: 40px auto; overflow: hidden; min-height: 250px;}
.testimonial-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  background: white; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  opacity: 0; transform: translateX(20px); transition: all 0.5s ease;
  pointer-events: none; z-index: 1;
}
.testimonial-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; z-index: 2; position: relative;}
.stars { color: var(--color-accent-gold); font-size: 1.2rem; margin-bottom: 16px; }
.test-text { font-family: var(--font-body); font-style: italic; font-size: 1.1rem; color: #444; margin-bottom: 24px; line-height: 1.6;}
.test-author { font-family: var(--font-body); font-weight: 700; color: var(--color-primary); }
.test-role { font-size: 0.85rem; color: #888; }

.carousel-dots { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--color-primary); transform: scale(1.2); }

/* FOOTER */
.footer { background: #0D0D0D; padding: 80px 0 20px; color: #888; font-size: 0.9rem; position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer h4 { color: white; font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500;}
.brand-col p { margin: 20px 0; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: #222; border-radius: 4px; color: white; transition: 0.2s;}
.social-icons a:hover { background: var(--color-primary); }
.footer-col a { display: block; margin-bottom: 12px; transition: 0.2s; }
.footer-col a:hover { color: white; }
.footer-col p { margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: #555;
}
.footer-bottom a { color: #555; margin-left: 12px; }
.footer-bottom a:hover { color: white; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* OTHER PAGES SPECIFIC STYLES */
/* HERO GENERIC */
.page-hero { height: 60vh; background: #111; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4)); z-index:1; }
.page-hero-bg { position:absolute; inset:0; background-image: url('https://picsum.photos/1920/1080?grayscale&blur=2'); background-size: cover; background-position: center; z-index:0; }
.page-hero-content { position: relative; z-index: 2; color: white; }
.breadcrumb { font-size: 0.85rem; color: #aaa; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: block;}
.page-hero h1 { 
  font-size: clamp(2.5rem, 5vw, 4.5rem); 
  margin: 0; 
  font-family: var(--font-hero); 
}

/* HERO VIDEO */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ABOUT PAGE */
.story-section { padding: 100px 0; background: var(--color-bg-white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-grid.alt { direction: rtl; }
.story-grid.alt > * { direction: ltr; }
.story-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.stats-bar { background: var(--color-primary); color: white; padding: 60px 0; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-num { font-family: var(--font-hero); font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* PHILOSOPHY SECTION */
.philosophy-section { background: var(--color-bg-light); padding: 120px 0; overflow: hidden; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.philosophy-content { padding-right: 40px; }
.philosophy-title { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 30px; line-height: 1.1; }
.philosophy-quote { font-family: var(--font-hero); font-size: 1.8rem; font-style: italic; color: var(--color-primary); margin-bottom: 24px; border-left: 2px solid var(--color-primary); padding-left: 20px; line-height: 1.4; }
.philosophy-text { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 40px; line-height: 1.8; }
.philosophy-features { display: flex; flex-direction: column; gap: 16px; }
.p-feature { display: flex; align-items: center; gap: 16px; }
.p-feature-num { font-family: var(--font-brand); font-weight: 700; color: rgba(200,16,46,0.2); font-size: 1.5rem; }
.p-feature-text { font-family: var(--font-brand); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; font-weight: 600; color: var(--color-text-dark); }
.philosophy-image-wrapper { position: relative; }
.philosophy-img { width: 100%; object-fit: cover; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.main-img { aspect-ratio: 3/4; }
.sub-img { position: absolute; bottom: -40px; left: -60px; width: 50%; aspect-ratio: 3/4; border: 10px solid var(--color-bg-light); }

@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 60px; }
  .philosophy-content { padding-right: 0; }
  .sub-img { left: -20px; bottom: -20px; width: 40%; }
}

/* PRODUCTS PAGE */
.products-layout { padding: 80px 0; background: var(--color-bg-white); }
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 60px; }
.filter-btn { padding: 8px 24px; border-radius: 40px; font-family: var(--font-body); font-size: 0.9rem; border: 1px solid #ddd; background: transparent; cursor: pointer; transition: 0.3s; display: inline-block; text-decoration: none; color: var(--color-text-dark); }
.filter-btn:hover, .filter-btn.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.product-card { display: block; border-bottom: 1px solid transparent; padding-bottom: 20px; }
.prod-img-wrap { overflow: hidden; aspect-ratio: 1; margin-bottom: 20px; position: relative; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-cat { color: var(--color-primary); font-size: 0.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 8px; display: block; }
.prod-name { font-family: var(--font-hero); font-size: 1.6rem; color: var(--color-text-dark); margin-bottom: 8px; }
.prod-desc { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .btn-ghost { border-color: var(--color-border); color: var(--color-text-dark); padding: 10px 24px; font-size: 0.75rem; }
.product-card:hover .btn-ghost { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* COLLECTIONS PAGE */
.collections-masonry { padding: 80px 0; background: var(--color-bg-light); column-count: 3; column-gap: 16px; }
.masonry-item { break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden; display: block;}
.masonry-item img { width: 100%; display: block; transition: 0.5s; }
.masonry-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay h3 { color: white; margin-bottom: 16px; font-size: 2rem;}

.cta-section { background: var(--color-bg-dark); padding: 120px 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 30px; }
.email-form { display: flex; justify-content: center; max-width: 500px; margin: 0 auto; gap: 8px; }
.email-form input { flex: 1; padding: 14px 20px; border: none; font-family: var(--font-body); font-size: 1rem; }
.email-form button { flex-shrink: 0; }

/* CERTIFICATIONS PAGE */
.cert-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 80px 0; }
.cert-card-detail { background: white; border: 1px solid #eee; padding: 36px; transition: 0.3s; display: flex; flex-direction: column; }
.cert-card-detail:hover { border-color: var(--color-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-5px); }
.cert-card-logo { filter: grayscale(100%); width: 100%; max-width: 160px; height: 60px; margin-bottom: 24px; display: flex; align-items: center; }
.cert-card-logo svg { max-width: 100%; height: auto; max-height: 100%; }

@media (max-width: 1024px) {
  .cert-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cert-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
}
.cert-card-detail h3 { color: var(--color-text-dark); margin-bottom: 8px; }
.cert-meta { font-size: 0.85rem; color: #888; margin-bottom: 16px; display: block;}

.process-timeline { display: flex; justify-content: space-between; position: relative; padding: 60px 0; margin-top: 40px;}
.process-timeline::before { content:''; position:absolute; top: 80px; left:0; right:0; height: 2px; background: #eee; z-index:0; }
.timeline-step { position: relative; z-index: 1; text-align: center; flex: 1; padding: 0 20px; }
.step-num { width: 40px; height: 40px; background: var(--color-primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; font-weight: 700; font-size: 1.1rem; }
.timeline-step h4 { color: var(--color-text-dark); font-family: var(--font-body); margin-bottom: 8px;}
.timeline-step p { font-size: 0.85rem; }

/* CLIENTS PAGE */
.clients-layout { padding: 80px 0; background: var(--color-bg-white); }
.map-section { text-align: center; margin-bottom: 80px; }
.map-placeholder { width: 100%; max-width: 900px; height: 400px; background: #fafafa; border: 1px calc(var(--color-border)); margin: 40px auto; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
/* Simulated map */
.map-placeholder::after { content:'Map Visualization SVG Here'; color:#ccc; }
.dot-marker { position: absolute; width: 12px; height: 12px; background: var(--color-primary); border-radius: 50%; border: 2px solid white; box-shadow: 0 0 10px rgba(200,16,46,0.5); }

.partner-logos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 80px; }
.pt-logo { height: 120px; background: #fafafa; display: flex; align-items: center; justify-content: center; font-family: var(--font-hero); font-size: 1.5rem; color: #aaa; filter: grayscale(100%); transition: 0.4s; }
.pt-logo:hover { filter: grayscale(0%); color: var(--color-primary); box-shadow: 0 5px 15px rgba(0,0,0,0.05); background: white; }

.client-test-single { text-align: center; max-width: 800px; margin: 0 auto; padding: 60px 0; }
.quote-mark { font-family: var(--font-hero); font-size: 6rem; color: #eee; line-height: 0; position: relative; top: 40px; }
.client-test-single p { font-family: var(--font-hero); font-size: 2rem; font-style: italic; color: var(--color-text-dark); position: relative; z-index: 2; margin-bottom: 40px;}
.client-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.client-name { font-weight: 700; color: var(--color-primary); }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 100px 0; background: var(--color-bg-white); }
.contact-form { background: #fafafa; padding: 40px; border: 1px solid #eee; position: relative; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; color: var(--color-text-dark); font-weight: 500; }
.form-control { width: 100%; border: 1px solid #ddd; padding: 12px 16px; font-family: var(--font-body); font-size: 1rem; background: white; transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--color-primary); }
textarea.form-control { resize: vertical; min-height: 120px; }
.error-msg { color: var(--color-primary); font-size: 0.8rem; margin-top: 4px; display: none; }
.form-group.has-error .form-control { border-color: var(--color-primary); }
.form-group.has-error .error-msg { display: block; }

.success-message { position: absolute; inset: 0; background: rgba(255,255,255,0.95); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; opacity: 0; pointer-events: none; transition: 0.3s; border: 1px solid #4caf50; }
.success-message.show { opacity: 1; pointer-events: auto; }
.success-message svg { width: 60px; height: 60px; color: #4caf50; margin-bottom: 20px; }
.success-message h3 { color: var(--color-text-dark); }

.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.info-card { padding: 30px; background: var(--color-bg-light); text-align: center; }
.info-icon { font-size: 2rem; margin-bottom: 16px; }
.info-card h4 { color: var(--color-text-dark); margin-bottom: 8px; font-family: var(--font-body); }
.info-card p { color: #555; }
.map-iframe { width: 100%; height: 350px; background: #eee; border: none;}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1280px) {
  .nav-links { gap: 24px; }
  h2 { font-size: 3rem; }
}

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-row { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-masonry { column-count: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  
  /* Navbar Mobile Optimizations */
  .nav-top-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 15px;
    text-align: center;
  }
  .nav-top a {
    font-size: 0.75rem;
  }
  .nav-container {
    height: 60px;
    padding: 0 20px;
  }
  body {
    padding-top: 110px; /* adjusted for taller nav-top on wrap */
  }
  .logo {
    font-size: 1.15rem;
    gap: 8px;
  }
  .logo-icon {
    width: 28px;
    max-height: 28px;
  }

  /* Hero Section Mobile Spacing */
  .hero-title { font-size: 2.2rem; }
  .hero-subtext { font-size: 1rem; margin: 16px auto; }
  .hero-buttons { flex-direction: column; gap: 12px; width: 100%; max-width: 280px; margin: 24px auto 0 auto; }
  .btn { width: 100%; padding: 12px 24px; font-size: 0.9rem; }

  /* Spacing */
  section { padding: 40px 0; }
  h2 { font-size: 1.8rem; margin-bottom: 16px; }
  h3 { font-size: 1.4rem; }

  /* Feature Grid */
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-features { grid-template-columns: 1fr; }
  .cat-row { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .yc-grid { grid-template-columns: 1fr; gap: 24px; }
  .partner-logos-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Certifications */
  .cert-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .cert-logos { gap: 15px; }
  .cert-item { min-width: 110px; padding: 12px; font-size: 1.1rem; }

  /* Process Timeline */
  .process-timeline { flex-direction: column; gap: 30px; padding: 0; }
  .process-timeline::before { left: 50%; top: 0; bottom: 0; width: 2px; height: auto; transform: translateX(-50%); }
  
  /* Story Grid */
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-grid.alt { direction: ltr; }
  .story-grid.alt > * { direction: ltr; }
  
  /* Products & Collections Masonry */
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .collections-masonry { column-count: 1; }
  
  /* Contact */
  .contact-info-cards { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .email-form { flex-direction: column; gap: 8px; }
  .email-form input { width: 100%; }

  /* Horizontal Slider */
  .horizontal-slider-track { padding-left: 5vw; gap: 15px; }
  .slide-card { width: 85vw; height: 50vh; }
  .slide-content h3 { font-size: 1.8rem; }
  .slide-content p { font-size: 0.9rem; }
  .slide-content { left: 15px; bottom: 15px; }

  /* Infographics Responsive - Keep text readable on mobile via horizontal scroll */
  .why-choose-us {
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .why-choose-us-img {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    height: auto;
  }
  .about-strip {
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 40px 0 !important;
  }
  .about-strip .text-center {
    width: 100%;
    padding: 0;
  }
  .about-strip img {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    height: auto;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  section { padding: 30px 0; }
  .hero-title { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .client-test-single p { font-size: 1.2rem; }
  .mobile-nav-links a { font-size: 1.8rem; }
}

/* CATALOG GALLERY & LIGHTBOX */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  margin-top: 20px;
}
.catalog-item {
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: background 0.3s ease;
}
.catalog-item:hover {
  background: rgba(255, 255, 255, 0.6);
}
.catalog-item-header {
  margin-bottom: 16px;
}
.catalog-item-meta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.catalog-item-title {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.catalog-img-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.catalog-item:hover .catalog-img-wrap img {
  transform: scale(1.08);
}
.catalog-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--color-primary);
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox.active img {
  transform: scale(1);
}

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

/* PROJECT SHOWCASE (Inspired Layout) */
.project-showcase {
  padding: 80px 0;
  background: var(--color-bg-white);
}

.image-box {
  display: grid;
  gap: 60px;
  min-height: 100vh;
  grid-template-columns: 1.2fr 2fr;
  align-items: start;
}
.image-box.reversed {
  grid-template-columns: 2fr 1.2fr;
}

.swapper {
  height: 70vh;
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.swapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; /* JS handles fading */
}
.swapper img:first-child {
  opacity: 1;
}

.controller {
  min-height: 180vh; 
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-block {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-block h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}
.text-block p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.progress {
  position: absolute;
  height: 120px;
  width: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  right: 20px;
}
.image-box.reversed .progress {
  left: 20px;
  right: auto;
}

.progress > div {
  flex: 1;
  position: relative;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}
.progress div > div {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  border-radius: 4px;
  height: 0%;
  background: white;
}

.caption {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.caption h2 { color: white; margin: 0; font-size: 1.5rem; }

@media (max-width: 1024px) {
  .image-box, .image-box.reversed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .swapper {
    height: 50vh;
  }
  .controller {
    min-height: auto;
  }
  .text-block {
    height: auto;
    padding: 40px 0;
  }
}

/* HOME CERTIFICATIONS SECTION */
.home-certs {
  padding: 80px 0;
  background-color: var(--color-bg-white);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.home-certs .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.home-certs-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}
.home-certs-intro h2 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-text-dark);
  margin-bottom: 20px;
}
.home-certs-intro p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.home-certs-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 40px;
  margin-top: 30px;
}
.home-certs-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  transition: all 0.3s ease;
  filter: grayscale(100%) contrast(0.8) opacity(0.6);
}
.home-certs-item:hover {
  filter: grayscale(0%) contrast(1) opacity(1);
  transform: translateY(-4px);
}
.home-certs-item svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .home-certs-logos {
    gap: 30px 25px;
  }
  .home-certs-item {
    width: calc(25% - 20px);
    min-width: 110px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .home-certs {
    padding: 60px 0;
  }
  .home-certs-logos {
    gap: 20px 15px;
  }
  .home-certs-item {
    width: calc(33.33% - 15px);
    min-width: 90px;
    height: 60px;
  }
  .home-certs-intro {
    margin-bottom: 35px;
  }
}

/* PRODUCT EXPLORE MODAL */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 11, 9, 0.85);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-container {
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  background: #FFF8ED;
  border-radius: 16px;
  border: 1px solid rgba(200, 16, 46, 0.15);
  padding: 60px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-modal-overlay.active .product-modal-container {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-dark);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(47, 42, 38, 0.05);
  transition: all 0.3s ease;
  z-index: 100;
}

.product-modal-close:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

.product-modal-close svg {
  width: 20px;
  height: 20px;
  display: block;
}

.product-modal-header {
  text-align: center;
  margin-bottom: 48px;
}

.product-modal-label {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.product-modal-title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.product-modal-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-modal-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(47, 42, 38, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  text-decoration: none;
}

.product-modal-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #f7e8da;
}

.product-modal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-modal-card-content h3 {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.product-modal-card-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
}

.product-modal-card-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.product-modal-card-btn svg {
  transition: transform 0.3s ease;
}

/* Card hover styles */
.product-modal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.2);
}

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

.product-modal-card:hover .product-modal-card-content h3 {
  color: var(--color-primary);
}

.product-modal-card:hover .product-modal-card-btn {
  letter-spacing: 0.08em;
}

.product-modal-card:hover .product-modal-card-btn svg {
  transform: translateX(4px);
}

/* Responsive modal design */
@media (max-width: 1024px) {
  .product-modal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .product-modal-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-modal-container {
    padding: 40px 20px;
    width: 95%;
  }
  .product-modal-header {
    margin-bottom: 32px;
  }
  .product-modal-card-img {
    aspect-ratio: 16/9;
  }
}
