/* ── 1. HERO SECTION (SLIDESHOW) ── */
.hero {
  position: relative;
  min-height: 840px;
  height: 92vh;
  color: #EDE6DC;
  overflow: hidden;
  background-color: #0f172a;
  font-family: 'Times New Roman', Times, serif !important;
}

/* Ensure all words in the hero section use Times New Roman format */
.hero,
.hero-content,
.hero-title,
.hero-title span,
.hero-desc,
.hero-actions,
.hero-actions .btn,
.hero-badge,
.hero-trust-badges,
.trust-badge-item,
.trust-badge-item span {
  font-family: 'Times New Roman', Times, serif !important;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  image-rendering: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.48) 0%,
    rgba(15, 23, 42, 0.30) 35%,
    rgba(15, 23, 42, 0.06) 60%,
    rgba(15, 23, 42, 0.0) 80%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 5;
}

.hero-slide .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6.5rem 0 8.5rem;
}

/* Hero badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93c5fd;
  margin-bottom: 1.25rem;
}

/* Subtle luxury hero heading in Times New Roman with pure white color */
.hero-title {
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
  margin-bottom: 1rem;
  letter-spacing: 0.015em;
  font-family: 'Times New Roman', Times, serif !important;
}
.hero-title span {
  color: #ffffff !important;
  font-weight: 700;
  font-family: 'Times New Roman', Times, serif !important;
}

/* ── Attractive Decorative Styling for Hero Slides in Times New Roman ── */
.hero-decor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 1.15rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50px;
  font-family: 'Times New Roman', Times, serif !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8BE78;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 12px rgba(212, 175, 55, 0.15);
}

.hero-decor-badge .decor-sparkle {
  color: #F5D79E;
  font-size: 0.8rem;
  text-shadow: 0 0 8px rgba(245, 215, 158, 0.8);
  animation: pulse-sparkle 2.5s ease-in-out infinite;
}

@keyframes pulse-sparkle {
  0%, 100% { opacity: 0.7; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-title-decorative {
  font-family: 'Times New Roman', Times, serif !important;
  font-size: clamp(2rem, 3.4vw, 3rem) !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  margin-bottom: 0.85rem !important;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}

.hero-title-decorative span {
  display: block;
}

.hero-title-decorative .decor-line-lead {
  font-family: 'Times New Roman', Times, serif !important;
  font-size: clamp(0.95rem, 1.35vw, 1.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E2DBD0 !important;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title-decorative .decor-line-gold {
  font-family: 'Times New Roman', Times, serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: clamp(2.3rem, 3.8vw, 3.4rem) !important;
  line-height: 1.1 !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF3DB 20%, #F5CE85 45%, #C8954C 75%, #F7DFAB 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: 0.01em;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.75));
  margin: 0.15rem 0 0.35rem 0;
}

.hero-title-decorative .decor-line-sub {
  font-family: 'Times New Roman', Times, serif !important;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem) !important;
  font-weight: 700 !important;
  color: #F8F5EE !important;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

/* Ornamental Divider */
.hero-decor-divider {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.6rem 0 1.25rem 0;
}

.hero-decor-divider .flourish-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, #BA9669 0%, transparent 100%);
}

.hero-decor-divider .flourish-line:first-child {
  background: linear-gradient(90deg, transparent 0%, #BA9669 100%);
}

.hero-decor-divider .flourish-symbol {
  color: #E8BE78;
  font-size: 0.75rem;
  text-shadow: 0 0 10px rgba(232, 190, 120, 0.6);
}

.hero-desc-decorative {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem) !important;
  line-height: 1.65 !important;
  color: #E2DBD0 !important;
  max-width: 38rem !important;
  letter-spacing: 0.01em;
  margin-bottom: 2rem !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Hero description in Times New Roman */
.hero-desc {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 36rem;
  font-weight: 400;
  font-family: 'Times New Roman', Times, serif !important;
}

/* CTA action buttons row in Times New Roman */
.hero-actions {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.85rem;
}

.btn-hero-gold {
  background-color: #BA9669;
  color: #FAF7F2 !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.82rem 2rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(186, 150, 105, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: 'Times New Roman', Times, serif !important;
}

.btn-hero-gold:hover {
  background-color: #a37d4e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(186, 150, 105, 0.45);
  color: #ffffff !important;
}

.btn-hero-translucent {
  background-color: rgba(186, 150, 105, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FAF7F2 !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.82rem 2rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: 'Times New Roman', Times, serif !important;
}

.btn-hero-translucent:hover {
  background-color: #BA9669;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(186, 150, 105, 0.45);
  color: #ffffff !important;
}

/* Minimal Luxury Hero Divider */
.hero-divider {
  width: 100%;
  max-width: 36rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 1.35rem;
}

/* Minimal Luxury Hero Trust Badges in Times New Roman */
.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 36rem;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #DDD6CB;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: 'Times New Roman', Times, serif !important;
}

.trust-badge-item svg {
  color: #BA9669;
  flex-shrink: 0;
}

/* Slide Indicators */
.hero-indicators-wrap {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.indicator-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.indicator-dot.active {
  background: #BA9669;
  width: 32px;
  border-radius: 6px;
}

/* ── 1B. TRANSLUCENT GLASS STATS STRIP (Directly Under Hero Section) ── */
.stats-strip-section {
  position: relative;
  z-index: 25;
  margin-top: -1.75rem; /* modest overlap giving hero section grand expansive height */
  padding: 0 1.5rem;
}

.stats-glass-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12),
              0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  padding: 1.75rem 2.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-glass-card:hover {
  box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.16),
              0 0 0 1px rgba(217, 119, 6, 0.35) inset;
  transform: translateY(-2px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
  transition: transform 0.25s ease;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 850;
  color: #0F172A !important;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.stat-number span {
  color: #C2410C !important;
  font-weight: 800;
}

.stat-label {
  font-size: 0.825rem;
  color: #334155 !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.35;
}


/* ── 2. BRANDS MARQUEE TICKER ── */
.brand-bar-section {
  background: var(--bg-page, #F6F8FA);
  border-bottom: none;
  padding: 1.75rem 0 1rem;
  overflow: hidden;
}

/* Outer mask — fades edges on left and right */
.brand-ticker-wrapper {
  position: relative;
  overflow: hidden;
  /* fade edges left & right */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

/* Inner scroll track */
.brand-ticker {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

/* Row 1 scrolls left */
.brand-ticker--left {
  animation: tickerLeft 36s linear infinite;
}

/* Row 2 scrolls right */
.brand-ticker--right {
  animation: tickerRight 40s linear infinite;
}

/* Pause on hover / focus-within */
.brand-ticker-wrapper:hover .brand-ticker,
.brand-ticker-wrapper:focus-within .brand-ticker {
  animation-play-state: paused;
}

@keyframes tickerLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes tickerRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Individual brand chip card — enlarged & premium */
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 210px;
  height: 96px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  cursor: default;
  user-select: none;
}

.brand-chip:hover {
  border-color: var(--accent);
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px 4px;
}

.brand-logo-raw {
  width: auto;
  height: auto;
  max-width: 185px;
  max-height: 78px;
  object-fit: contain;
  transition: transform 0.25s ease;
  border-radius: 6px;
}

.brand-logo-raw[alt*="RAMESH"],
.brand-logo-raw[alt*="GREENFOS"],
.brand-logo-raw[alt*="V-GUARD"] {
  border-radius: 8px;
}

.brand-logo-raw[alt*="GROHE"],
.brand-logo-raw[alt*="Grohe"] {
  max-width: 140px;
  max-height: 52px;
}

.brand-chip:hover .brand-logo-raw {
  transform: scale(1.05);
}

.brand-logo-fallback {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-900);
  letter-spacing: 0.02em;
}

.brand-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-chip-cat {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── 3. BUSINESS DIVISIONS ── */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.business-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.business-card:hover,
.business-card.touched {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.business-header {
  height: 11rem;
  background-color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: #ffffff;
}

.business-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.business-title {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  color: var(--primary-900);
}

.business-desc {
  color: var(--primary-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex: 1;
}


/* 4. WHY CHOOSE US (FEATURE CARDS) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.trust-card:hover {
  border-color: var(--accent);
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.trust-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-900);
}

.trust-desc {
  font-size: 0.875rem;
  color: var(--primary-500);
  line-height: 1.5;
}


/* 5. FEATURED PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.product-card:hover,
.product-card.touched {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: var(--surface, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

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

.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.product-name {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-sku {
  font-size: 0.75rem;
  color: var(--primary-500);
  font-family: monospace;
  margin-bottom: 1rem;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}


/* 6. PROJECT SECTION */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.project-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.project-card:hover {
  border-color: var(--accent);
}

.project-header {
  height: 10rem;
  background-color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-body {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.project-desc {
  font-size: 0.875rem;
  color: var(--primary-500);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.project-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* 7. CTA BANNER SECTION */
.cta-banner {
  background-color: var(--primary-900);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-md);
}

.cta-banner-content {
  max-width: 36rem;
}

.cta-banner-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-banner-desc {
  color: #94A3B8;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── 2. LEGACY ABOUT SECTION (Traditional & Emotional) ── */
.legacy-about-section {
  padding: 2.5rem 0;
  background-color: #fdfcfa; /* Warm cream traditional background */
  border-top: 1px solid #f2eade;
  border-bottom: 1px solid #f2eade;
}

.legacy-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.legacy-tag {
  color: #c27d38 !important; /* Elegant warm traditional accent */
}

.legacy-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.legacy-title span {
  color: #c27d38;
}

.legacy-story-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.25rem;
}

.legacy-story-body blockquote {
  border-left: 4px solid #c27d38;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 600;
}

.legacy-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.pillar-icon {
  font-size: 2rem;
  line-height: 1;
}

.pillar-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.25rem 0;
}

.pillar-item p {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
}

/* Right side image frame */
.legacy-image-frame {
  position: relative;
  border-radius: var(--radius-xl, 20px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(194, 125, 56, 0.15);
  border: 4px solid #ffffff;
}

.legacy-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.legacy-image-frame:hover .legacy-img {
  transform: scale(1.03);
}

/* Left visual column containing image frame and trust box */
.legacy-visual-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legacy-trust-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl, 18px);
  padding: 1.25rem 1.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.legacy-trust-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, #f59e0b 50%, #fbbf24 75%, transparent 95%);
}

.legacy-trust-box:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.legacy-trust-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.legacy-trust-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(217, 119, 6, 0.12) 100%);
  border: 1px solid rgba(245, 158, 11, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.legacy-trust-heading {
  font-size: 1.65rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.legacy-trust-sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.legacy-trust-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
  flex-shrink: 0;
}

.legacy-trust-highlight .star {
  color: #f59e0b;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .legacy-trust-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
  }
  .legacy-trust-heading {
    font-size: 1.4rem;
  }
}

.legacy-badge-floating {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.legacy-badge-year {
  font-size: 1.75rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.legacy-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Legacy Section */
@media (max-width: 992px) {
  .legacy-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── 3. HOMEPAGE STORE CARDS WITH BACKGROUND IMAGES ── */
.homepage-store-card {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
  min-height: 250px;
  border-top: none !important; /* override border-top colored lines to draw focus on full cover */
}

.homepage-store-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 100%);
  z-index: -1;
  transition: background 0.25s ease;
}

.homepage-store-card:hover::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.homepage-store-card.bath-kitchen {
  background-image: url('/static/images/hero/bath_kitchen_banner.jpg');
}
.homepage-store-card.plumbing {
  background-image: url('/static/images/hero/plumbing_banner.jpg');
}
.homepage-store-card.hardware {
  background-image: url('/static/images/hero/hardware_banner.jpg');
}

/* Mobile Row layouts should also show background image softly */
@media (max-width: 768px) {
  .homepage-store-card {
    min-height: auto;
  }
  .homepage-store-card::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%);
  }
  
  /* Mobile legacy about adjustments to tighten space & show content sooner */
  .legacy-about-section {
    padding: 1.25rem 0 1rem; /* reduce top/bottom padding to move content up */
  }
  .legacy-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  .legacy-story-body p {
    font-size: 0.925rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }
  /* Hide heavy elements to bring stores section up quickly on mobile */
  .legacy-story-body p:nth-of-type(2) {
    display: none;
  }
  .legacy-story-body blockquote {
    display: none;
  }
  .legacy-pillars {
    display: none;
  }
  .legacy-image-frame {
    display: none;
  }
  .legacy-about-grid {
    gap: 0;
  }
}

/* ============================================================
   Sathik Groups — Single Page Grid & Testimonial Styles
   ============================================================ */

/* ── PRODUCT RANGE GRID ── */
.product-range-sec {
  padding: 5rem 0;
  background-color: var(--bg);
}

.s-prod-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-decoration: none;
}

.s-prod-box:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.s-prod-box:hover img {
  transform: scale(1.05);
}

.s-prod-box .prod-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.s-prod-box .prod-link:hover {
  gap: 0.5rem;
}

/* Horizontal card adjustments */
.s-prod-box img {
  transition: transform 0.3s ease;
}

.s-prod-box .s-prod-img img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* Vertical card layout */
.s-prod-box.vertical-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.s-prod-box.vertical-box .prod-img-wrap {
  text-align: right;
  margin-top: auto;
}

.s-prod-box.vertical-box .prod-img-wrap img {
  max-height: 200px;
  object-fit: contain;
  max-width: 100%;
  border-radius: var(--radius-md);
}

/* ── TESTIMONIALS SECTION ── */
.testimonial-sec {
  background-color: var(--surface-light, #f8fafc);
  padding: 5rem 0;
}

.s-testimonial-box-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.s-testimonial-box-wrap:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.testimonial-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.testimonial-left-img:hover img {
  transform: scale(1.03);
}

/* Responsive adjustments for grids */
@media (max-width: 992px) {
  .product-range-sec .row {
    flex-direction: column !important;
  }
  .product-range-sec .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .testimonial-sec .row {
    flex-direction: column !important;
  }
  .testimonial-sec .col-md-5, .testimonial-sec .col-md-7 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .testimonial-left-img {
    height: 250px !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ──────────────────────────────────────────────────────────
   3. KALANJIAM-STYLE CLEAN PRODUCTS CATALOGUE GRID (Image 2)
   ────────────────────────────────────────────────────────── */
.k-products-section {
  padding: 3.5rem 0;
  background: var(--bg-page, #F6F8FA);
  border-bottom: 1px solid var(--border);
}

.k-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.25rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 1rem;
}

.k-title-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.k-accent-bar {
  width: 4px;
  height: 26px;
  background: var(--accent);
  border-radius: 2px;
}

.k-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-900);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.k-filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.k-filter-tabs::-webkit-scrollbar {
  display: none;
}

.k-tab-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--primary-700);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.k-tab-btn:hover {
  border-color: var(--primary-900);
  color: var(--primary-900);
}

.k-tab-btn.active {
  background: var(--primary-900);
  color: #ffffff;
  border-color: var(--primary-900);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

/* ──────────────────────────────────────────────────────────
   3. KALANJIAM-STYLE PRODUCTS CATALOGUE (Streamlined & Non-Bulky)
   ────────────────────────────────────────────────────────── */
.k-products-section {
  padding: 2.25rem 0 2.5rem;
  background: var(--bg-card, #ffffff);
}

.k-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.k-title-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.k-accent-bar {
  width: 4px;
  height: 28px;
  background: var(--accent, #ea580c);
  border-radius: 2px;
}

.k-title {
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  color: var(--primary-900, #0f172a);
  margin: 0;
  line-height: 1.15;
}

.k-filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.k-tab-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.k-tab-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-1px);
}

.k-tab-btn.active {
  background: var(--primary-900, #0f172a);
  color: #ffffff;
  border-color: var(--primary-900, #0f172a);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Quick Department Access Chips Bar */
.k-quick-dept-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.k-quick-label {
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

.k-quick-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 650;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.k-quick-chip:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--accent, #ea580c);
  transform: translateY(-1px);
}

.k-quick-chip-store {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #ea580c;
  font-weight: 750;
  margin-left: auto;
}

.k-quick-chip-store:hover {
  background: #ea580c;
  color: #ffffff;
  border-color: #ea580c;
}

/* Products Grid */
.k-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.k-prod-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.k-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.k-prod-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 0.35rem;
}

.k-prod-badge-dept {
  font-size: 0.68rem;
  font-weight: 750;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.k-prod-badge-dept.hardware {
  background: #fef3c7;
  color: #b45309;
}

.k-prod-badge-dept.plumbing {
  background: #e0f2fe;
  color: #0369a1;
}

.k-prod-badge-dept.bath-kitchen {
  background: #f3e8ff;
  color: #7e22ce;
}

.k-prod-badge-brand {
  font-size: 0.68rem;
  font-weight: 750;
  color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.k-prod-img-box {
  width: 100%;
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  padding: 0.5rem;
}

.k-prod-img-box img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

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

.k-prod-content {
  text-align: left;
  margin-bottom: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.k-prod-title {
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--primary-900, #0f172a);
  margin: 0 0 0.3rem 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}

.k-prod-title a {
  color: inherit;
  text-decoration: none;
}

.k-prod-title a:hover {
  color: var(--accent, #ea580c);
}

.k-prod-meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.k-prod-sku {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.k-prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  border-top: 1px solid #f1f5f9;
  gap: 0.5rem;
}

.k-prod-more-link {
  display: inline-flex;
  align-items: center;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.78rem;
  background: #f1f5f9;
  padding: 0.42rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.k-prod-more-link:hover {
  background: #e2e8f0;
  color: var(--accent, #ea580c);
}

.k-prod-quote-btn {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  border: none;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 750;
  padding: 0.42rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

.k-prod-details-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.82rem;
  background: #f1f5f9;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.k-prod-details-btn:hover {
  background: var(--accent, #ea580c);
  color: #ffffff;
  border-color: var(--accent, #ea580c);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────
   3B. SPECIALIZED STORES 6-GRID SECTION (Image 3 Style)
   ────────────────────────────────────────────────────────── */
.asian-stores-section {
  padding: 3.5rem 0 3rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

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

.asian-stores-center-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.asian-stores-center-row .asian-store-card {
  width: calc((100% - 4rem) / 3);
  max-width: 380px;
  min-width: 280px;
}

@media (max-width: 991px) {
  .asian-stores-center-row .asian-store-card {
    width: calc((100% - 2rem) / 2);
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .asian-stores-center-row .asian-store-card {
    width: 100%;
    max-width: 100%;
  }
}

.asian-store-card {
  display: flex;
  flex-direction: column;
}

.asian-store-img-box {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #f1f5f9;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.asian-store-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.asian-store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.asian-store-img-box:hover .asian-store-img {
  transform: scale(1.06);
}

.asian-store-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem 1.35rem 1.25rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.asian-store-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.asian-store-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.asian-store-img-box:hover .asian-store-cta {
  color: var(--accent, #ea580c);
}

.asian-store-footer {
  padding-top: 0.65rem;
}

.asian-store-knowmore {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #0284c7;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.asian-store-knowmore:hover {
  color: #0369a1;
  text-decoration: underline;
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .asian-stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }
  .asian-store-title {
    font-size: 1.25rem;
  }
}

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

/* ──────────────────────────────────────────────────────────
   3C. PRODUCT GALLERY (Unified Visual Showcase Grid)
   ────────────────────────────────────────────────────────── */
.p-gallery-section {
  padding: 3.25rem 0 3.75rem;
  background: var(--bg-page, #f8fafc);
  border-top: 1px solid var(--border, #e2e8f0);
}

.p-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .p-gallery-grid > .p-gallery-card.p-gallery-col2 {
    grid-column: 2;
  }
  .p-gallery-grid > .p-gallery-card.p-gallery-col3 {
    grid-column: 3;
  }
  .p-gallery-grid > .p-gallery-card.p-gallery-col4 {
    grid-column: 4;
  }
}

.p-gallery-card {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  cursor: default;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease;
}

.p-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  border-color: #cbd5e1;
}

.p-gallery-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.p-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem 1.25rem 1.25rem;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 3;
}

.p-gallery-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

@media (max-width: 991px) {
  .p-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
  .p-gallery-title {
    font-size: 1.02rem;
  }
}

@media (max-width: 480px) {
  .p-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .p-gallery-overlay {
    padding: 2.25rem 0.65rem 0.65rem;
  }
  .p-gallery-title {
    font-size: 0.88rem;
  }
}

/* ──────────────────────────────────────────────────────────
   4. SHOWROOMS 3-STORE SHOWCASE (4-Column Layout with Dedicated QR Column & Map)
   ────────────────────────────────────────────────────────── */
.showrooms-section {
  padding: 2.25rem 0;
  background: var(--bg-page, #F4F6F4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showrooms-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showroom-card-grid {
  display: grid;
  grid-template-columns: 240px 1fr 200px 240px;
  gap: 1.25rem;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.35rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  align-items: stretch;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.showroom-card-grid:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.showroom-img-frame {
  height: 100%;
  min-height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  width: 100%;
  box-sizing: border-box;
}

.showroom-img-frame .showroom-bg-blur {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  filter: blur(20px) brightness(0.6) saturate(1.2);
  transform: scale(1.1);
  z-index: 1;
  pointer-events: none;
}

.showroom-img-frame .showroom-main-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.showroom-badge-tag {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ── Dedicated Google Review QR Badge Column (Fitted fully to sides) ── */
.showroom-qr-container {
  display: flex;
  height: 100%;
  min-width: 0;
  width: 100%;
}

.showroom-qr-review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border: 1.5px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--radius-md, 12px);
  padding: 0.75rem 0.5rem;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: #0F172A;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.showroom-qr-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.22);
  border-color: #EA580C;
  background: #FFFDF9;
}

.showroom-qr-review-card .qr-preview-box {
  background: #FFFFFF;
  padding: 4px 4px 6px 4px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.showroom-qr-review-card .qr-preview-img {
  width: 100%;
  max-width: 175px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.showroom-qr-review-card .qr-scan-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 750;
  color: #C2410C;
  letter-spacing: 0.04em;
  margin-top: 5px;
  text-transform: uppercase;
}

.showroom-qr-review-card .qr-review-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.showroom-qr-review-card .qr-stars {
  font-size: 0.85rem;
  line-height: 1;
  letter-spacing: 1px;
}

.showroom-qr-review-card .qr-friendly-text {
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
  color: #1E293B;
  margin-top: 2px;
}

.showroom-qr-review-card .qr-friendly-text span {
  font-size: 0.64rem;
  font-weight: 500;
  color: #64748B;
  display: block;
  margin-top: 1px;
}

.showroom-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.55rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.showroom-number-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #ea580c);
}

.showroom-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-900, #0f172a);
  margin: 0;
  line-height: 1.25;
}

.showroom-address-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--primary-700, #334155);
  line-height: 1.4;
  min-width: 0;
  width: 100%;
}

.showroom-address-row strong {
  color: var(--primary-900, #0f172a);
}

.showroom-phone-block {
  background: var(--surface, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  box-sizing: border-box;
}

.showroom-phone-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  width: 100%;
}

.showroom-phone-line .phone-label {
  color: #475569;
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 115px;
}

.showroom-phone-line .phone-val {
  font-weight: 800;
  color: var(--primary-900, #0f172a);
  text-decoration: none;
  transition: color 0.2s;
}

.showroom-phone-line .phone-val:hover {
  color: var(--accent, #ea580c);
}

.showroom-hours-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--primary-700, #334155);
  flex-wrap: wrap;
}

.showroom-actions {
  margin-top: 0.35rem;
}

/* Explore Store Products Button - Website Orange & Lively */
.btn-showroom-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  font-weight: 750;
  font-size: 0.86rem;
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.32);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.btn-showroom-orange:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
  color: #ffffff !important;
}

/* ── Interactive Right-Side Map Card ── */
.showroom-map-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.showroom-map-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.showroom-map-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.showroom-map-frame {
  position: relative;
  flex: 1;
  min-height: 180px;
  background: #e2e8f0;
  overflow: hidden;
}

.showroom-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.1);
  pointer-events: none;
}

.showroom-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.55rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0) 55%);
  transition: background 0.25s ease;
}

.showroom-map-card:hover .showroom-map-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.1) 65%);
}

.map-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 750;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.showroom-map-card:hover .map-badge-pill {
  background: #ea580c;
  border-color: #ea580c;
  transform: scale(1.04);
}

.map-pin-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pinPulse 1.8s infinite;
}

@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.showroom-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.map-footer-label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.map-footer-label strong {
  color: #0f172a;
  font-size: 0.8rem;
}

.map-footer-label span {
  color: #64748b;
  font-size: 0.7rem;
}

.map-footer-btn {
  color: #ea580c;
  font-weight: 750;
  font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .k-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .showroom-card-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .showroom-img-frame {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .k-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .k-prod-img-box {
    height: 180px;
    padding: 0.35rem;
    margin-bottom: 0.65rem;
  }
  .k-prod-img-box img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  .k-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .k-filter-tabs {
    width: 100%;
  }
  .showroom-switcher-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .showroom-tab-btn {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  .showroom-card-grid {
    padding: 0.95rem;
    gap: 0.95rem;
    border-radius: 12px;
  }
  .showroom-img-frame {
    height: 180px;
  }
  .showroom-name {
    font-size: 1.15rem;
  }
  .showroom-actions {
    flex-direction: column;
  }
  .showroom-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .k-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .k-prod-card {
    padding: 0.6rem;
  }
  .k-prod-img-box {
    height: 155px;
    padding: 0.25rem;
    margin-bottom: 0.5rem;
  }
  .k-prod-img-box img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  .k-prod-title {
    font-size: 0.78rem;
  }
  .k-prod-brand {
    font-size: 0.72rem;
  }
  .showroom-card-grid {
    padding: 0.75rem;
  }
  .showroom-img-frame {
    height: 155px;
  }
  .showroom-phone-block {
    padding: 0.75rem 0.85rem;
  }
}

/* ==========================================================================
   🏆 AWARDS & RECOGNITION SHOWCASE SECTION (Hall of Honors - Single Line Strip)
   ========================================================================== */
.awards-showcase-section {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.15) 0%, transparent 65%),
              linear-gradient(180deg, #090D16 0%, #0F172A 50%, #090D16 100%);
  padding: 1.25rem 0 1.25rem;
  border-top: 1px solid rgba(245, 158, 11, 0.25);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  color: #F8FAFC;
  overflow: hidden;
}

.awards-showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F59E0B, #FBBF24, transparent);
}

.awards-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 0.4rem;
}

.awards-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.75rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 9999px;
  color: #FBBF24;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
}

.awards-title {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  margin: 0 0 0.3rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.awards-title-gradient {
  background: linear-gradient(135deg, #FFFFFF 40%, #FBBF24 85%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.awards-subtitle {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 720px;
}

/* MARQUEE WRAPPER & EDGE MASKS */
.awards-marquee-wrapper {
  position: relative;
  width: 100%;
  margin: 0.35rem 0 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.awards-fade-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 4;
  pointer-events: none;
}

.awards-fade-left {
  left: 0;
  background: linear-gradient(90deg, #090D16 0%, rgba(9, 13, 22, 0) 100%);
}

.awards-fade-right {
  right: 0;
  background: linear-gradient(270deg, #090D16 0%, rgba(9, 13, 22, 0) 100%);
}

/* CONTAINER (DRAGGABLE & TOUCH SWIPABLE) */
.awards-marquee-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 0.4rem 0.5rem 0.5rem;
  width: 100%;
  display: block;
  -webkit-overflow-scrolling: touch;
}

.awards-marquee-container::-webkit-scrollbar {
  display: none;
}

.awards-marquee-container.is-dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* SINGLE CONTINUOUS TRACK */
.awards-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.85rem;
  width: max-content;
  align-items: center;
}

/* SINGLE-LINE TROPHY CARD */
.award-trophy-card {
  flex: 0 0 155px;
  width: 155px;
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
}

.award-trophy-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #F59E0B;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(245, 158, 11, 0.25);
}

.award-card-inner {
  display: flex;
  flex-direction: column;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}

.award-image-wrap {
  position: relative;
  height: 160px;
  width: 100%;
  background: radial-gradient(circle at center, #1E293B 0%, #0B1120 85%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
  box-sizing: border-box;
}

.award-image-wrap .award-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.65));
  transition: transform 0.3s ease;
  pointer-events: none;
  user-select: none;
}

.award-trophy-card:hover .award-img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 18px rgba(245, 158, 11, 0.35));
}

.award-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.award-trophy-card:hover .award-hover-overlay {
  opacity: 1;
}

.award-inspect-pill {
  background: #F59E0B;
  color: #0F172A;
  font-weight: 750;
  font-size: 0.68rem;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.5);
  transform: translateY(4px);
  transition: transform 0.2s ease;
}

.award-trophy-card:hover .award-inspect-pill {
  transform: translateY(0);
}

.award-card-footer {
  padding: 0.35rem 0.25rem 0.15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.award-meta-text {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* FLOATING NAV ARROWS */
.award-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FBBF24;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.award-nav-prev {
  left: 0.5rem;
}

.award-nav-next {
  right: 0.5rem;
}

.award-nav-arrow:hover {
  background: #F59E0B;
  color: #0F172A;
  border-color: #F59E0B;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.6);
  transform: translateY(-50%) scale(1.1);
}

/* LIGHTBOX MODAL */
.award-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.award-lightbox-modal.active {
  display: flex;
}

.award-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.award-lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 960px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.award-lightbox-main {
  background: linear-gradient(160deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 158, 11, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

.award-lightbox-frame {
  width: 100%;
  height: 60vh;
  max-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0F172A 0%, #020617 100%);
  border-radius: 14px;
  overflow: hidden;
  padding: 1rem;
  box-sizing: border-box;
}

.award-lightbox-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.award-lightbox-info {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

.award-lightbox-counter {
  font-size: 0.78rem;
  font-weight: 750;
  color: #FBBF24;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.award-lightbox-title {
  font-size: 1.15rem;
  font-weight: 750;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.award-lightbox-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  max-width: 620px;
  margin: 0 auto;
}

.award-lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.award-lightbox-close:hover {
  background: #EF4444;
  border-color: #EF4444;
  transform: rotate(90deg);
}

.award-lightbox-nav {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FBBF24;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.award-lightbox-nav:hover {
  background: #F59E0B;
  color: #0F172A;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .awards-showcase-section {
    padding: 1rem 0 1rem;
  }
  .award-trophy-card {
    flex: 0 0 128px;
    width: 128px;
  }
  .award-image-wrap {
    height: 135px;
  }
  .awards-fade-edge {
    width: 25px;
  }
  .award-nav-arrow {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
  .award-nav-prev {
    left: 0.25rem;
  }
  .award-nav-next {
    right: 0.25rem;
  }
  .award-lightbox-frame {
    height: 50vh;
  }
  .award-lightbox-nav {
    display: none;
  }
}


