@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Option 2: Dual-Tone Navy & Tinted Slate Hybrid Theme */
  --primary: #0B132B;       /* Deep Midnight Navy (Hero & Dark Sections) */
  --primary-light: #1C2541; /* Midnight Indigo */
  --navy-dark: #070D1E;     /* Pitch Navy */
  --secondary: #FF5F05;     /* High-Visibility Safety Orange */
  --secondary-hover: #E04E00; 
  --accent: #FFA700;        /* Safety Amber */
  --accent-light: rgba(255, 167, 0, 0.12);
  --success: #10B981;       
  --danger: #EF4444;        
  
  /* Tinted Slate Body Theme Variables (Zero Plain White!) */
  --bg-main: #EEF2F6;       /* Warm Tinted Tech Slate */
  --bg-subtle: #E2E8F0;     /* Deep slate divider */
  --bg-card: #FFFFFF;       /* Crisp card surface */
  --bg-dark-section: #0B132B; /* Dark Navy Section Background */
  --text-main: #0F172A;     /* Deep Charcoal Slate */
  --text-muted: #64748B;    /* Muted Slate */
  --text-white: #FFFFFF;
  --text-white-muted: #94A3B8;
  --border: #CBD5E1;        /* Crisp Slate Border */
  --border-focus: #FF5F05;
  --shadow-sm: 0 1px 3px rgba(11, 19, 43, 0.05);
  --shadow: 0 4px 16px -2px rgba(11, 19, 43, 0.08), 0 2px 6px -1px rgba(11, 19, 43, 0.05);
  --shadow-lg: 0 16px 32px -4px rgba(11, 19, 43, 0.12), 0 8px 16px -4px rgba(11, 19, 43, 0.06);
  --shadow-glow: 0 0 25px rgba(255, 95, 5, 0.22);
  --glass-bg: rgba(11, 19, 43, 0.95);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Global utility classes */
.hidden {
  display: none !important;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(rgba(148, 163, 184, 0.35) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(255, 95, 5, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(255, 167, 0, 0.04) 0%, transparent 45%);
  background-size: 24px 24px, 100% 100%, 100% 100%;
  color: var(--text-main);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary-hover);
}

/* Deep Navy Glassmorphism Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background-color: var(--secondary);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 95, 5, 0.4);
}

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

.nav-link {
  color: #E2E8F0;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.2s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(234, 88, 12, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.btn-accent:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 215, 0, 0.3);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: background-color 0.2s;
  width: 36px;
  height: 36px;
}

.theme-toggle:hover {
  background-color: var(--border);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Utility Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Premium Hero Section */
.hero {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.08), transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  background-color: rgba(234, 88, 12, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

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

/* Finder Widget (Quiz Card) */
.quiz-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.quiz-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--secondary);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-step-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.quiz-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background-color: var(--bg-main);
}

.quiz-option:hover {
  border-color: var(--secondary);
  background-color: rgba(234, 88, 12, 0.04);
}

.quiz-option.selected {
  border-color: var(--secondary);
  background-color: rgba(234, 88, 12, 0.08);
  box-shadow: 0 0 0 1px var(--secondary);
}

.quiz-option-radio {
  margin-right: 0.75rem;
  accent-color: var(--secondary);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-progress {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Premium Highlight Cards & Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.85rem;
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(234, 88, 12, 0.35);
}

.card:hover::before {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  letter-spacing: 0.3px;
}

.card-badge-editors {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.12) 0%, rgba(245, 158, 11, 0.15) 100%);
  color: var(--secondary);
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.card-badge-standard {
  background-color: var(--bg-main);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.card-brand {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* Contextual Visual Card Image Header */
.card-img-header {
  position: relative;
  width: calc(100% + 3.7rem);
  margin: -1.85rem -1.85rem 1.25rem -1.85rem;
  height: 170px;
  overflow: hidden;
  background-color: var(--primary);
}

.card-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img-header img {
  transform: scale(1.06);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.05) 0%, rgba(11, 19, 43, 0.65) 100%);
  pointer-events: none;
}

/* Compliance Showcase Banner */
.compliance-showcase-banner {
  background: linear-gradient(135deg, #0B132B 0%, #152238 60%, #070D1E 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 3rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 4rem 0;
  box-shadow: 0 16px 36px -10px rgba(11, 19, 43, 0.35), 0 0 0 1px rgba(255, 95, 5, 0.15);
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .compliance-showcase-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.compliance-visual-wrap {
  flex: 1 1 42%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compliance-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.35s ease;
}

.compliance-showcase-banner:hover .compliance-img {
  transform: scale(1.02);
}

.compliance-content {
  flex: 1 1 58%;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.55;
  flex-grow: 1;
}

.card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  margin-bottom: 1.35rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  font-size: 0.85rem;
}

.card-spec-item {
  color: var(--text-muted);
}

.card-spec-item strong {
  color: var(--text-main);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
}

/* Tables (Highly Crawlable & Scrapeable for GEO) */
.table-container {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.table-container:hover {
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

th {
  background: var(--bg-main);
  color: var(--text-main);
  font-weight: 700;
  padding: 1.1rem 1.25rem;
  border-bottom: 2px solid var(--border);
  letter-spacing: 0.3px;
}

td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: background-color 0.2s ease, color 0.2s ease;
}

tbody tr:hover td {
  background-color: rgba(234, 88, 12, 0.035);
  color: var(--text-main);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  color: var(--text-main);
  background-color: rgba(234, 88, 12, 0.02);
}

/* FAQ Accordion for AEO */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.25rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding: 0 1.25rem 1.25rem 1.25rem;
  transition: max-height 0.25s cubic-bezier(1, 0, 1, 0);
}

.faq-icon {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* Footer (Deep Midnight Navy) */
footer {
  background-color: var(--primary);
  color: #94A3B8;
  padding: 4.5rem 2rem 2.5rem 2rem;
  border-top: 2px solid rgba(255, 95, 5, 0.3);
  font-size: 0.9rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 0.75rem;
}

.footer-links-col a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  header {
    position: relative; /* Let header scroll away on mobile to save vertical space */
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .nav-links {
    gap: 1.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .nav-links {
    display: none; /* In production, add a burger menu. For now keep simple */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Finder Sub-Nav Bar (Static right under navigation header) */
.finder-sticky-bar {
  background-color: var(--primary);
  border-bottom: 3px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  padding: 0.85rem 0 1rem 0;
  position: relative;
  z-index: 90;
}

/* Ladder Type Tabs (Find page) */
.ladder-type-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.ladder-type-tabs::-webkit-scrollbar {
  display: none;
}

.ladder-type-tabs .tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ladder-type-tabs .tab-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background-color: rgba(234, 88, 12, 0.02);
}

.ladder-type-tabs .tab-btn.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.2);
}

/* GoTrip-Style Horizontal Search Bar Styling */
.selector-bar-wrap {
  width: 100%;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.selector-bar {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
  gap: 0.25rem;
  width: 100%;
  transition: all 0.3s ease;
}

.selector-bar:hover {
  border-color: var(--secondary);
}

.selector-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.selector-col:nth-last-of-type(2) {
  border-right: none; /* exclude last col before button */
}

.selector-col-icon {
  color: var(--secondary);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.selector-col-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.selector-col-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.selector-col-info label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.selector-col-info input,
.selector-col-info select {
  border: none;
  background: transparent;
  color: var(--text-main);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Remove dropdown arrow styling so it is clean */
.selector-col-info select::-ms-expand {
  display: none;
}

.selector-search-btn-col {
  padding: 0.5rem;
  flex-shrink: 0;
}

.selector-search-btn-col .btn {
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  height: 100%;
  white-space: nowrap;
}

/* Results panel showing below horizontal bar */
#selector-results {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 1.5rem;
  animation: fadeIn 0.4s ease forwards;
}

@media (max-width: 968px) {
  .selector-bar {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .selector-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    width: 100%;
  }
  
  .selector-col:nth-last-of-type(2) {
    border-bottom: none;
  }
  
  .selector-search-btn-col {
    width: 100%;
    padding: 0;
  }
  
  .selector-search-btn-col .btn {
    width: 100%;
  }
}

/* Dynamic Catalog Styles */
.brand-tab.active {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
}

.brand-tab:hover:not(.active) {
  background-color: var(--border) !important;
}

.card-img-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  padding: 0.75rem;
  transition: transform 0.2s ease;
}

.card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card:hover .card-img-wrap {
  transform: scale(1.02);
}

/* ==========================================================================
   Search Dashboard & Filter Sidebar
   ========================================================================== */

.search-dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

@media (max-width: 968px) {
  .search-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Sidebar Styles */
.search-sidebar {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.search-sidebar::-webkit-scrollbar {
  width: 6px;
}

.search-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.search-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.search-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

@media (max-width: 968px) {
  .search-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}

.filter-group {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  accent-color: var(--secondary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-option:hover {
  color: var(--text-main);
}

/* Search Summary Reach Banner */
.reach-banner {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.08), rgba(255, 215, 0, 0.08));
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.reach-banner-icon {
  background-color: var(--secondary);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.2);
}

.reach-banner-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.reach-banner-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.reach-banner-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sorting Section */
.results-sorting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.results-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sort-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sort-select {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.sort-select:focus {
  border-color: var(--secondary);
}

/* 3-Column Product Grid Layout */
.result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 680px) {
  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .result-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-grid-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  position: relative;
}

.product-grid-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 14px 30px -8px rgba(11, 19, 43, 0.16), 0 0 16px rgba(255, 95, 5, 0.14);
}

.product-grid-img-wrap {
  height: 200px;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

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

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

.product-grid-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.product-grid-brand {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.product-grid-code {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-main);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.product-grid-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.85rem;
  height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-grid-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-grid-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-grid-spec-item strong {
  color: var(--text-main);
  font-weight: 600;
}

.product-grid-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-grid-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Pagination Styling */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 1rem 0;
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: var(--bg-card);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.page-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(11, 19, 43, 0.25);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-ellipsis {
  padding: 0 0.4rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* Legacy Result List / Ticket */
.result-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-card {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.result-card-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 1rem;
  border-right: 1px dashed var(--border);
  overflow: hidden;
}

.result-card-left-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.result-brand-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.result-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.result-series {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.result-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.sirim-badge {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.en131-badge {
  background-color: rgba(234, 88, 12, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(234, 88, 12, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.slogan-badge {
  background-color: rgba(255, 215, 0, 0.1);
  color: #c48a00;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.result-safety-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.result-safety-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.result-safety-item::before {
  content: "🛡️";
  font-size: 0.7rem;
}

/* Card Mid Section (Specifications flight-ticket style) */
.result-card-mid {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-card);
  border-right: 1px solid var(--border);
}

.spec-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.spec-line:last-child {
  margin-bottom: 0;
}

.spec-line strong {
  color: var(--text-main);
}

/* Card Right Section (Pricing & CTA) */
.result-card-right {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
}

.result-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.result-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.result-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f59e0b;
}

.result-rating svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.compare-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 0.25rem;
}

.compare-checkbox-label input {
  accent-color: var(--secondary);
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .result-card {
    grid-template-columns: 1fr;
  }
  
  .result-card-left {
    border-right: none;
    border-bottom: 1px dashed var(--border);
    height: 200px;
  }
  
  .result-card-mid {
    border-right: none;
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-card);
  }
  
  .result-card-right {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .result-price-wrap {
    text-align: left;
  }
  
  .compare-checkbox-label {
    margin-top: 0;
  }
}

/* Floating Comparison Tray */
.compare-tray {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
}

.compare-tray.active {
  transform: translateY(0);
}

.compare-tray-items {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.compare-tray-title {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.compare-tray-chips {
  display: flex;
  gap: 0.5rem;
}

.compare-chip {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-chip-remove {
  cursor: pointer;
  font-weight: bold;
  color: var(--danger);
}

.compare-tray-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 768px) {
  .compare-tray {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .compare-tray-items {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
  }
  
  .compare-tray-chips {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .compare-tray-actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* Split Layout for Types Section on Homepage */
.types-split-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.types-left-guide {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.types-guide-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2.25rem 0;
}

.types-guide-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.types-guide-item::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.types-right-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .types-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .types-split-container {
    grid-template-columns: 380px 1fr;
    margin-top: 2rem;
  }
  
  .types-left-guide {
    position: sticky;
    top: 100px;
  }
}

/* --- Bonik eCommerce Style Redesign --- */

/* Header Search Bar */
.header-search-container {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 2px 6px;
  width: 100%;
  max-width: 500px;
  margin: 0 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.header-search-container:focus-within {
  border-color: var(--secondary);
}

.header-search-select {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  outline: none;
  border-right: 1px solid var(--border);
  border-radius: 9999px 0 0 9999px;
}

.header-search-input {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  color: var(--text-main);
}

.header-search-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.header-search-btn:hover {
  background: var(--secondary-hover);
}

/* Navigation Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.6rem;
  min-width: 270px;
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.18), 0 8px 12px -6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--text-main);
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.nav-dropdown-item:hover {
  background: rgba(234, 88, 12, 0.08);
  color: var(--secondary);
  transform: translateX(4px);
}

.dropdown-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.nav-dropdown-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-dropdown-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 2px;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.4rem 0.5rem;
}

.nav-dropdown-wa:hover {
  background: rgba(37, 211, 102, 0.1);
  color: #128c7e;
}

/* Finder Sticky Sub-Bar (Cockpit Control Styling) */
.finder-sticky-bar {
  background: linear-gradient(135deg, #0B132B 0%, #162544 100%);
  border-bottom: 2px solid rgba(255, 95, 5, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  padding: 0.75rem 0;
  position: relative;
  z-index: 90;
}

.selector-bar {
  background-color: #FFFFFF !important;
  border: 1px solid #CBD5E1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.selector-col {
  transition: background-color 0.2s ease;
}

.selector-col:hover {
  background-color: #F8FAFC;
}

.selector-col label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.selector-col input,
.selector-col select {
  font-weight: 600;
  color: var(--text-main);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.2rem 0.4rem;
  transition: all 0.2s ease;
}

.selector-col input:focus,
.selector-col select:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: #FFF7ED;
}

/* Full-Width 1/1 Hero Showcase Banner (Deep Midnight Navy Style) */
.hero-full-banner {
  position: relative;
  background: linear-gradient(135deg, #0B132B 0%, #111E38 50%, #070D1E 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(11, 19, 43, 0.45), 0 0 0 1px rgba(255, 95, 5, 0.2);
  color: #ffffff;
}

@media (min-width: 992px) {
  .hero-full-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hero-full-banner-glow {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 95, 5, 0.18) 0%, rgba(255, 167, 0, 0.06) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-full-content {
  flex: 1 1 58%;
  z-index: 2;
  position: relative;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 95, 5, 0.15);
  border: 1px solid rgba(255, 95, 5, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFA700;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 12px rgba(255, 95, 5, 0.2);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FF5F05;
  display: inline-block;
  box-shadow: 0 0 8px #FF5F05;
}

.hero-full-title {
  color: #FFFFFF;
  font-size: 2.85rem;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #FF5F05 0%, #FFA700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-full-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 620px;
}

.hero-criteria-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.criteria-tag-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.82rem;
  color: #F8FAFC;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.criteria-tag-item:hover {
  background: rgba(255, 95, 5, 0.2);
  border-color: #FF5F05;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 95, 5, 0.25);
  color: #ffffff;
}

.criteria-tag-icon {
  font-size: 1.15rem;
}

.hero-full-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
}

.hero-full-visual {
  flex: 1 1 38%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.hero-ladder-img {
  width: 100%;
  height: auto;
  max-height: 290px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hero-full-banner:hover .hero-ladder-img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px -8px rgba(255, 95, 5, 0.35), 0 0 0 1px rgba(255, 167, 0, 0.5);
}

.floating-badge {
  position: absolute;
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-top-right {
  top: 10px;
  right: -10px;
}

.badge-bottom-left {
  bottom: 15px;
  left: -10px;
  animation-delay: 2s;
}

.floating-badge strong {
  display: block;
  font-size: 0.8rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.floating-badge small {
  display: block;
  font-size: 0.7rem;
  color: #94A3B8;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Circular Category Highlights Section */
.circular-categories-container {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.circular-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  width: 105px;
}

.circular-icon-wrap {
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 0.75rem;
}

.circular-category-card:hover .circular-icon-wrap {
  transform: scale(1.15) translateY(-4px);
  border-color: var(--secondary);
  box-shadow: 0 12px 24px rgba(255, 95, 5, 0.25);
  background: #FFF7ED;
}

.circular-category-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

/* Bonik-style Product Card Grid */
.bonik-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .bonik-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .bonik-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bonik-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
}

.bonik-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(234, 88, 12, 0.3);
}

.bonik-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 10;
}

.bonik-badge-accent {
  background: var(--accent);
  color: var(--primary);
}

.bonik-img-container {
  aspect-ratio: 1 / 1;
  background: var(--bg-main);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
  position: relative;
}

.bonik-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.bonik-brand-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
}

.bonik-product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bonik-stars {
  display: flex;
  gap: 2px;
  color: #ffb400;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.bonik-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.bonik-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
}

/* Trust Badges Bar styling */
.trust-badges-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin: 4rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.trust-badge-icon {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.trust-badge-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-badge-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
  background-color: #128C7E !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
}

/* Floating WhatsApp Speed Dial Widget */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  padding: 0.8rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.38), 0 2px 6px rgba(0,0,0,0.12);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff !important;
}

.floating-wa-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  animation: waPulse 2.8s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* --- Editorial Magazine & Blog Hub Styles --- */
.blog-filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0 3rem 0;
}

.blog-filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.15);
}

.blog-featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}

@media (min-width: 992px) {
  .blog-featured-card {
    flex-direction: row;
  }
}

.blog-featured-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px -10px rgba(11, 19, 43, 0.18), 0 0 20px rgba(255, 95, 5, 0.15);
}

.blog-featured-img-wrap {
  flex: 1 1 50%;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background-color: var(--primary);
}

.blog-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-img-wrap img {
  transform: scale(1.05);
}

.blog-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--secondary);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.blog-featured-content {
  flex: 1 1 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
}

.blog-category-tag {
  color: var(--secondary);
  font-weight: 700;
}

.blog-featured-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.blog-featured-card:hover .blog-featured-title {
  color: var(--secondary);
}

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

/* Magazine Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

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

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 95, 5, 0.12);
}

.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--primary);
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--secondary);
}

.blog-card-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
}

.blog-read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-more-link {
  gap: 0.6rem;
}

/* ==========================================================================
   Product Image Lightbox Modal & Zoom Preview
   ========================================================================== */

/* Hover Cursor & Zoom Hint on Product Image Containers */
.product-grid-img-wrap,
.bonik-img-container,
.card-img-wrap,
.card-img-header {
  position: relative;
  cursor: zoom-in;
}

.product-grid-img-wrap::after,
.bonik-img-container::after,
.card-img-wrap::after {
  content: "🔍 Click to Zoom";
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(11, 19, 43, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(4px) scale(0.95);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 5;
}

.product-grid-img-wrap img,
.bonik-img-container img,
.card-img-wrap img,
.card-img-header img {
  transition: transform 0.12s ease-out, transform-origin 0.08s ease-out;
  will-change: transform, transform-origin;
}

.product-grid-img-wrap:hover::after,
.bonik-img-container:hover::after,
.card-img-wrap:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Lightbox Modal Overlay */
.ladder-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ladder-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Backdrop with blur */
.ladder-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 13, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

/* Modal Dialog Box */
.ladder-lightbox-dialog {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 95, 5, 0.15);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  z-index: 2;
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ladder-lightbox-modal.active .ladder-lightbox-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.ladder-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.ladder-lightbox-close:hover {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
  transform: scale(1.1) rotate(90deg);
}

/* Body: 2 Columns on Desktop */
.ladder-lightbox-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .ladder-lightbox-body {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }
}

/* Media (Image) Area */
.ladder-lightbox-media {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}

@media (max-width: 768px) {
  .ladder-lightbox-media {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 1.5rem 1rem;
  }
}

.ladder-lightbox-img-wrap {
  width: 100%;
  height: 380px;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(203, 213, 225, 0.7);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
  cursor: crosshair;
}

@media (max-width: 768px) {
  .ladder-lightbox-img-wrap {
    height: 250px;
  }
}

.ladder-lightbox-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.1s ease-out, transform-origin 0.08s ease-out;
  will-change: transform, transform-origin;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.lightbox-zoom-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 19, 43, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
  opacity: 0.85;
  transition: all 0.2s ease;
  z-index: 4;
}

.ladder-lightbox-img-wrap:hover .lightbox-zoom-badge {
  opacity: 1;
  background: rgba(255, 95, 5, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.ladder-lightbox-hint {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Info & Specs Area */
.ladder-lightbox-info {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .ladder-lightbox-info {
    padding: 1.5rem;
  }
}

.ladder-lightbox-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  padding-right: 2.5rem;
}

.ladder-lightbox-brand {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
  background: rgba(255, 95, 5, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 95, 5, 0.2);
}

.ladder-lightbox-code {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-main);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.ladder-lightbox-title {
  font-size: 1.45rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.ladder-lightbox-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.ladder-lightbox-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  background: var(--bg-main);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.ladder-lightbox-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ladder-lightbox-spec-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ladder-lightbox-spec-item strong {
  font-size: 0.9rem;
  color: var(--text-main);
}

.ladder-lightbox-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.ladder-lightbox-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.ladder-lightbox-wa-btn:hover {
  background: #20BA5A;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.ladder-lightbox-full-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.2s ease;
}

.ladder-lightbox-full-btn:hover {
  color: var(--text-main);
  border-color: var(--secondary);
  background: var(--bg-main);
}

/* Editorial Article Visuals & Media Cards */
.article-media-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 2.25rem 0;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-media-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.article-media-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-media-caption {
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
}

.article-media-caption strong {
  color: var(--text-main);
}

.article-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.25rem 0;
}

@media (min-width: 768px) {
  .article-visual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Page Styles */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.contact-form-group {
  margin-bottom: 1.25rem;
}

.contact-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.contact-form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.contact-form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 95, 5, 0.15);
  background: var(--bg-card);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}



