/* ============================================
   PREMIUM SINGLE-PAGE WEBSITE STYLES
   Commercial Refrigeration & Foodservice Equipment
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Color Palette (Olive & Beige Theme) */
  --navy-deep: #1c443e;
  --navy-medium: #544738;
  --icy-white: #fcf8f2;
  --electric-teal: #1c443e;
  --warm-gold: #d1a556;
  --text-dark: #143632;
  --text-muted: #5c6253;
  --glass-bg: rgba(121, 128, 100, 0.1);
  --glass-border: rgba(121, 128, 100, 0.2);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;
  
  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --glow-teal: 0 0 30px rgba(61, 51, 38, 0.2);
  --glow-gold: 0 0 30px rgba(61, 51, 38, 0.2);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--icy-white);
  line-height: 1.6;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVIGATION BAR ===== */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* No sticky behavior — navbar scrolls away with the page */

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color 0.3s ease;
}

.topbar.scrolled .brand-lockup {
  color: #fff;
}

.brand-mark {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-teal), #143632);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-heading);
  color: white; /* Always white */
}

.brand-name {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-heading);
  margin: 0;
}

.brand-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8); /* Light tagline */
  margin: 0;
  transition: color 0.3s ease;
}

.topbar.scrolled .brand-tagline {
  color: rgba(255, 255, 255, 0.8); /* Light tagline when scrolled */
}

.topnav {
  display: flex;
  gap: 50px;
  align-items: center;
}

.topnav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.topbar.scrolled .topnav a {
  color: rgba(255, 255, 255, 0.9);
}

.topnav a:hover,
.topnav a.active {
  color: #ffffff;
}

.topnav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fcf8f2;
  transition: width 0.3s ease;
}

.topnav a:hover::after,
.topnav a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
}

.nav-dropdown-menu a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ===== CONTAINER ===== */
.sp-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

main {
  padding-top: 140px;
}

/* Remove the extra padding when hero section is present */
.hero-section + main,
.split-hero + main,
.catalog-hero + main {
  padding-top: 0;
}

/* ===== SPLIT HERO SECTION ===== */
.split-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background-image: url('../images/kitchen_hero_bg.png');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.split-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 54, 50, 0.95) 0%, rgba(20, 54, 50, 0.7) 35%, transparent 60%);
  z-index: 1;
}

.split-hero-left {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 150px 5% 50px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.split-hero-content {
  max-width: 650px;

}

.split-hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: #d1a556;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.split-hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 25px;
}

.split-hero-desc {
  font-size: 1.2rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.split-hero-actions {
  display: flex;
  gap: 20px;
}

.split-btn-primary {
  background-color: rgba(20, 54, 50, 0.8);
  color: #ffffff;
  border: 1px solid #5c6253;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.split-btn-primary:hover {
  background-color: #143632;
  border-color: #d1a556;
}

.split-btn-outline {
  background-color: #ffffff;
  color: #1c443e;
  border: 2px solid #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.split-btn-outline:hover {
  background-color: transparent;
  color: #ffffff;
}

.split-hero-features {
  align-self: flex-end;
  margin-top: auto;
  background-color: #143632;
  border: 1px solid #d1a556;
  border-radius: 12px;
  padding: 30px 50px;
  display: flex;
  gap: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.split-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.split-feature-item i {
  font-size: 2.2rem;
  color: #d1a556;
}

.split-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .split-hero-left {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 120px;
  }
  .split-hero-title {
    font-size: 3.5rem;
  }
  .split-hero-features {
  align-self: flex-end;
  margin-top: auto;
    width: 100%;
    justify-content: space-around;
    padding: 20px;
    gap: 20px;
  }
}

/* ===== HERO SLIDER ===== */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 5s linear;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

/* ===== HERO SECTION (Trufrost Style) ===== */
.hero-section {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== TRUFROST-STYLE PRODUCTS GRID ===== */
.mok-tru-section {
  background: #fcf8f2;
  padding: 70px 0 90px;
}

.mok-tru-header {
  text-align: center;
  margin-bottom: 40px;
}

.mok-tru-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: 3px;
  margin: 0 0 4px;
}

.mok-tru-header p {
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
  margin: 0;
}

.mok-tru-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.mok-tru-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #1c443e;
}

.mok-tru-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 37, 28, 0.9) 0%, rgba(44, 37, 28, 0.3) 50%, transparent 100%);
  opacity: 0.85;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.mok-tru-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 51, 38, 0.15);
}

.mok-tru-card:hover::after {
  opacity: 1;
}

.mok-tru-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mok-tru-card:hover img {
  transform: scale(1.15);
}

.mok-tru-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  color: white;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  letter-spacing: 0.5px;
  transition: transform 0.5s ease, color 0.3s ease;
}

.mok-tru-card:hover .mok-tru-label {
  transform: translateY(-8px);
  color: var(--electric-teal);
}

/* ===== WHAT DO WE DEAL IN — SPLIT SECTION ===== */

.mok-deal-section {
  display: flex;
  min-height: 600px;
}

/* Dark left panel */
.mok-deal-left {
  width: 35%;
  background: #143632;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  flex-shrink: 0;
}

.mok-deal-left h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 500;
  color: white;
  line-height: 1.1;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.mok-deal-divider {
  width: 80px;
  height: 3px;
  background: #fcf8f2;
  margin: 0 0 48px;
  opacity: 0.5;
}

.mok-deal-btn {
  display: inline-block;
  background: #fcf8f2;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  width: fit-content;
}

.mok-deal-btn:hover {
  background: #1c443e;
  color: white;
}

/* Right panel with grid */
.mok-deal-right {
  flex: 1;
  background: #fcf8f2;
  display: flex;
  align-items: center;
  padding: 50px 40px;
}

.mok-deal-right .mok-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.mok-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

/* Rounded image wrapper */
.mok-card-img-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background: #ddd;
}

.mok-product-card:hover .mok-card-img-wrap {
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

.mok-card-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.mok-product-card:hover .mok-card-img-wrap img {
  transform: scale(1.05);
}

/* Label below image */
.mok-card-label {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-align: center;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.mok-product-card:hover .mok-card-label {
  color: #00a8aa;
}

/* ===== PREMIUM ABOUT SECTION ===== */
.mok-about-premium {
  padding: 120px 0;
  background: linear-gradient(145deg, #ffffff, #f4f7f9);
  overflow: hidden;
}

.mok-about-premium-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.mok-about-premium-content {
  flex: 1;
}

.mok-premium-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--electric-teal);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.mok-premium-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.15;
  margin-bottom: 30px;
}

.mok-premium-text {
  font-size: 16px;
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}

.mok-premium-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mok-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.mok-stat-label {
  font-size: 14px;
  color: #778b9e;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mok-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-deep);
  color: white;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 18px 36px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(44, 37, 28, 0.2);
}

.mok-premium-btn:hover {
  background: var(--electric-teal);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(61, 51, 38, 0.15);
}

.mok-about-premium-visual {
  flex: 1;
  position: relative;
}

.mok-visual-backdrop {
  position: absolute;
  top: -30px;
  left: -30px;
  right: 30px;
  bottom: 30px;
  background: var(--electric-teal);
  border-radius: 20px;
  opacity: 0.1;
  z-index: 0;
}

.mok-visual-img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 1;
  border: 10px solid white;
}

.mok-visual-float-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #fcf8f2;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  border-left: 4px solid var(--warm-gold);
}

.mok-float-icon {
  width: 48px;
  height: 48px;
  background: rgba(61, 51, 38, 0.08);
  color: var(--warm-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mok-float-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 2px;
}

.mok-float-text span {
  font-size: 13px;
  color: #666;
}
/* ===== CUSTOM-BUILT EQUIPMENT SECTION ===== */
/* ===== CUSTOM-BUILT EQUIPMENT — SPLIT HOVER LAYOUT ===== */
.mok-custom-equipment {
  padding: 0;
  background-color: #fcf8f2;
  position: relative;
  overflow: hidden;
}

/* Split wrapper: left + right side by side, fits one screen */
.mok-equip-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  max-height: 100vh;
}

/* ── LEFT PANEL ── */
.mok-equip-left {
  padding: 36px 16px 36px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #fcf8f2;
  position: relative;
  z-index: 2;
  overflow-y: auto;
}

.mok-equip-left > * {
  width: 100%;
  max-width: 420px;
}

.mok-equip-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
}

.mok-custom-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mok-custom-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  color: #7a6600;
  letter-spacing: 4px;
  margin-bottom: 10px;
  background: rgba(200,168,0,0.1);
  border: 1px solid rgba(200,168,0,0.25);
  padding: 4px 10px;
  border-radius: 50px;
}

.mok-custom-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8a800;
  flex-shrink: 0;
}

.mok-custom-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}

.mok-custom-title span.thin {
  font-weight: 300;
  letter-spacing: 3px;
  color: #555555;
}

.mok-custom-divider {
  display: none;
}

/* ── NAME LIST ── */
.mok-equip-namelist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mok-equip-nameitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  background: transparent;
}

.mok-equip-nameitem::before {
  display: none;
}

.mok-equip-nameitem.active,
.mok-equip-nameitem:hover {
  background: rgba(200,168,0,0.08);
}

.mok-equip-num {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 500;
  color: rgba(0,0,0,0.25);
  letter-spacing: 1px;
  min-width: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.mok-equip-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex: 1;
  transition: all 0.25s ease;
}

.mok-equip-arrow {
  font-size: 9px;
  color: #c8a800;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
}

/* Active / hover state */
.mok-equip-nameitem.active .mok-equip-num,
.mok-equip-nameitem:hover .mok-equip-num {
  background: #c8a800;
  color: #fff;
}

.mok-equip-nameitem.active .mok-equip-label,
.mok-equip-nameitem:hover .mok-equip-label {
  color: var(--navy-deep);
  font-weight: 500;
  letter-spacing: 1px;
}

.mok-equip-nameitem.active .mok-equip-arrow,
.mok-equip-nameitem:hover .mok-equip-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── RIGHT PANEL ── */
.mok-equip-right {
  position: relative;
  background-color: #eeece8;
  overflow: hidden;
}

/* All panels stacked, only .active is visible */
.mok-equip-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.mok-equip-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Image: fixed height so info strip is always visible */
.mok-equip-panel-img {
  flex: 0 0 68%;
  overflow: hidden;
  position: relative;
  padding: 14px 14px 0 14px;
}

.mok-equip-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.mok-equip-panel.active .mok-equip-panel-img img {
  transform: scale(1);
}

/* Info strip below image — always visible */
.mok-equip-panel-info {
  flex: 1 1 auto;
  padding: 14px 22px 18px;
  background: #fcf8f2;
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.mok-equip-panel-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* Bullet point spec list */
.mok-equip-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mok-equip-spec-list li {
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.5;
}

.mok-equip-spec-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8a800;
  flex-shrink: 0;
}

.mok-equip-panel-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: #1c443e;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.mok-equip-panel-btn:hover {
  background: #c8a800;
  color: var(--navy-deep);
  transform: translateX(3px);
}

.mok-equip-panel-btn i {
  font-size: 9px;
  transition: transform 0.3s ease;
}

.mok-equip-panel-btn:hover i {
  transform: translateX(3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .mok-equip-split-wrapper {
    height: 100vh;
  }
  .mok-equip-left {
    padding: 40px 36px 40px 48px;
  }
  .mok-custom-title {
    font-size: 28px;
  }
  .mok-equip-label {
    font-size: 12px;
  }
  .mok-equip-nameitem {
    padding: 8px 0;
  }
}

@media (max-width: 1024px) {
  .mok-equip-split-wrapper {
    height: 100vh;
  }
  .mok-equip-left {
    padding: 36px 28px 36px 40px;
  }
  .mok-custom-title {
    font-size: 24px;
  }
  .mok-equip-label {
    font-size: 11px;
  }
  .mok-custom-header {
    margin-bottom: 18px;
  }
  .mok-equip-panel-img {
    flex: 0 0 55%;
  }
}

@media (max-width: 768px) {
  .mok-equip-split-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .mok-equip-left {
    padding: 40px 24px 32px;
    max-height: none;
    overflow-y: visible;
  }
  .mok-equip-left::after {
    display: none;
  }
  .mok-equip-nameitem::before {
    left: -24px;
  }
  .mok-custom-title {
    font-size: 22px;
  }
  .mok-equip-right {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  .mok-equip-panel {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    width: 100% !important;
    opacity: 0 !important;
    display: none !important;
    pointer-events: none !important;
    transform: none !important;
    padding: 30px 20px !important;
  }
  .mok-equip-panel.active {
    opacity: 1 !important;
    display: block !important;
    pointer-events: auto !important;
  }
  
  /* Override inline card style widths */
  .mok-equip-panel div[style*="calc(50%"] {
    width: 100% !important;
  }
}
/* ===== BUTTONS ===== */
.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sp-btn-primary {
  background: linear-gradient(135deg, var(--warm-gold), #143632);
  color: white;
  box-shadow: 0 10px 30px rgba(61, 51, 38, 0.2);
}

.sp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(61, 51, 38, 0.3);
}

.sp-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.sp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--electric-teal);
  color: var(--electric-teal);
  transform: translateY(-3px);
}

.sp-btn-white {
  background: #fcf8f2;
  color: var(--navy-deep);
}

.sp-btn-white:hover {
  background: var(--electric-teal);
  color: white;
  transform: scale(1.05);
}

.sp-btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== HERO STATS ===== */
.sp-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
}

.sp-stat {
  text-align: left;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.sp-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--electric-teal);
}

.sp-stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--electric-teal);
  margin-bottom: 5px;
}

.sp-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION STYLES ===== */
.sp-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.sp-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.sp-section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(61, 51, 38, 0.05), rgba(61, 51, 38, 0.1));
  border: 1px solid var(--electric-teal);
  border-radius: 50px;
  color: var(--electric-teal);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.sp-section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.sp-section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.sp-about {
  background: linear-gradient(180deg, var(--icy-white) 0%, white 100%);
}

.sp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sp-text-large {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.sp-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.sp-why-choose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.sp-why-item {
  display: flex;
  gap: 15px;
  align-items: start;
  padding: 20px;
  background: #fcf8f2;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sp-why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sp-why-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-teal), #143632);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.sp-why-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--navy-deep);
}

.sp-why-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.sp-glass-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sp-glass-card img {
  width: 100%;
  height: auto;
  display: block;
}

.sp-glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sp-glass-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  color: var(--electric-teal);
  margin-bottom: 5px;
}

.sp-glass-label {
  font-size: 16px;
  color: #374151;
}

/* ===== PRODUCT CATEGORIES ===== */
.sp-categories {
  background: #fcf8f2;
}

.sp-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.sp-category-card {
  position: relative;
  padding: 40px 30px;
  background: #fcf8f2;
  border: 1px solid rgba(44, 37, 28, 0.08);
  border-radius: 20px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sp-category-card:hover {
  border-color: rgba(61, 51, 38, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(61, 51, 38, 0.08);
}

.sp-category-icon {
  width: 56px;
  height: 56px;
  background: rgba(61, 51, 38, 0.04);
  color: var(--electric-teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.sp-category-card:hover .sp-category-icon {
  background: var(--electric-teal);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(61, 51, 38, 0.15);
}

.sp-category-icon-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 140px;
  color: rgba(44, 37, 28, 0.03);
  z-index: 1;
  transform: rotate(-15deg);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.sp-category-card:hover .sp-category-icon-bg {
  color: rgba(61, 51, 38, 0.02);
  transform: rotate(0deg) scale(1.1);
}

.sp-category-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.sp-category-card:hover h3 {
  color: var(--electric-teal);
}

.sp-category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.sp-category-card:hover .sp-category-link {
  color: var(--navy-deep);
  gap: 12px;
}

.sp-category-glow {
  display: none;
}

/* ===== BRANDS SECTION ===== */
.sp-brands {
  background: #fcf8f2;
  color: var(--text-dark);
}

.sp-brands .sp-section-title {
  color: var(--navy-deep);
}

.sp-brands .sp-section-subtitle {
  color: var(--text-muted);
}

.sp-brands-carousel {
  overflow: hidden;
  padding: 20px 0;
}

.sp-brands-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sp-brand-card {
  flex-shrink: 0;
  padding: 30px 50px;
  background: #fcf8f2;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.sp-brand-card:hover {
  background: #fcf8f2;
  border-color: var(--electric-teal);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sp-brand-card span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

/* ===== FEATURED PRODUCTS ===== */
.sp-featured {
  background: linear-gradient(180deg, white 0%, var(--icy-white) 100%);
}

.sp-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.sp-product-card {
  background: #fcf8f2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.sp-product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.sp-product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.sp-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sp-product-card:hover .sp-product-image img {
  transform: scale(1.1);
}

.sp-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 37, 28, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-product-card:hover .sp-product-overlay {
  opacity: 1;
}

.sp-product-info {
  padding: 30px;
}

.sp-product-info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 15px;
}

.sp-product-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CLIENTS SECTION ===== */
.sp-clients {
  background: #fcf8f2;
}

.sp-clients-carousel {
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 60px;
}

.sp-clients-track {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
}

.sp-client-card {
  flex-shrink: 0;
  padding: 20px 40px;
  background: var(--icy-white);
  border: 1px solid #e0e7ee;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.sp-client-card:hover {
  background: var(--navy-deep);
  color: white;
  border-color: var(--electric-teal);
}

.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.sp-testimonial-card {
  padding: 40px;
  background: linear-gradient(135deg, var(--icy-white), white);
  border-radius: 20px;
  border: 1px solid #e0e7ee;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sp-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sp-testimonial-stars {
  color: var(--warm-gold);
  font-size: 20px;
  margin-bottom: 20px;
}

.sp-testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-style: italic;
}

.sp-testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 5px;
}

.sp-testimonial-author span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.sp-gallery {
  background: var(--icy-white);
}

.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.sp-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sp-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.sp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sp-gallery-item:hover img {
  transform: scale(1.2);
}

.sp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 37, 28, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-gallery-item:hover .sp-gallery-overlay {
  opacity: 1;
}

.sp-gallery-overlay i {
  font-size: 48px;
  color: white;
}

/* ===== CONTACT SECTION ===== */
.sp-contact {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1a2332 50%, var(--navy-deep) 100%);
  color: white;
}

.sp-contact .sp-section-badge {
  background: rgba(61, 51, 38, 0.1);
}

.sp-contact .sp-section-title {
  color: white;
}

.sp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.sp-contact-details {
  margin-top: 40px;
  display: grid;
  gap: 30px;
}

.sp-contact-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.sp-contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-teal), #143632);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.sp-contact-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: white;
}

.sp-contact-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.sp-social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.sp-social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.sp-social-link:hover {
  background: var(--electric-teal);
  border-color: var(--electric-teal);
  transform: translateY(-3px);
}

/* ===== FORM STYLES ===== */
.sp-contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.sp-form {
  display: grid;
  gap: 25px;
}

.sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sp-form-group {
  display: grid;
  gap: 10px;
}

.sp-form-group label {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sp-form-group input,
.sp-form-group select,
.sp-form-group textarea {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 16px;
  transition: all 0.3s ease;
}

.sp-form-group input::placeholder,
.sp-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sp-form-group input:focus,
.sp-form-group select:focus,
.sp-form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--electric-teal);
  box-shadow: 0 0 0 3px rgba(61, 51, 38, 0.05);
}

.sp-form-group select {
  cursor: pointer;
}

.sp-form-group select option {
  background: var(--navy-deep);
  color: white;
}

.sp-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
.sp-footer {
  background: var(--navy-deep);
  color: white;
  padding: 60px 0 30px;
}

.sp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.sp-footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.sp-footer-logo h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.sp-footer-logo p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.sp-footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.sp-footer-links h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #d1a556; /* Gold color for headings */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sp-footer-links a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sp-footer-links a:hover {
  color: #ffffff; /* White on hover */
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.sp-footer-social {
  display: flex;
  gap: 12px;
}

.sp-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.sp-footer-social a:hover {
  background: var(--electric-teal);
  transform: translateY(-3px);
}

.sp-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.sp-footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===== FLOATING ELEMENTS ===== */
.sp-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.sp-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

.sp-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 110px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-teal), #143632);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.sp-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.sp-scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  :root {
    --section-padding: 80px;
  }
  
  .sp-container {
    padding: 0 30px;
  }
  
  .sp-about-grid,
  .sp-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .topbar {
    padding: 15px 20px;
  }
  
  .topnav {
    display: none !important;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .sp-why-choose {
    grid-template-columns: 1fr;
  }
  
  .sp-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sp-featured-grid {
    grid-template-columns: 1fr;
  }
  
  .sp-testimonials {
    grid-template-columns: 1fr;
  }
  
  .sp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sp-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .sp-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 120px 0 60px 0;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .sp-section-title {
    font-size: 32px;
  }
  
  .sp-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .sp-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .sp-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sp-whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  .sp-scroll-top {
    right: 80px;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .brand-name {
    font-size: 14px;
  }
  
  .brand-tagline {
    font-size: 10px;
  }
  
  .sp-hero-title {
    font-size: 28px;
  }
  
  .sp-section-title {
    font-size: 28px;
  }
  
  .sp-product-info h3 {
    font-size: 20px;
  }
  
  .sp-contact-form {
    padding: 25px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations to elements with data-aos */
[data-aos="fade-up"] {
  animation: slideInUp 0.8s ease;
}

[data-aos="fade-left"] {
  animation: slideInLeft 0.8s ease;
}

[data-aos="fade-right"] {
  animation: slideInRight 0.8s ease;
}

[data-aos="zoom-in"] {
  animation: zoomIn 0.8s ease;
}

/* ===== PRINT STYLES ===== */
@media print {
  .topbar,
  .sp-whatsapp-float,
  .sp-scroll-top,
  .sp-hero-actions {
    display: none !important;
  }
  
  .sp-section {
    page-break-inside: avoid;
  }
}


/* ===== KITCHEN LOOKBOOK SECTION ===== */
.mok-kitchen-lookbook {
  padding: 40px 0 60px;
  background: #fcf8f2;
}
.mok-lookbook-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Header */
.mok-lookbook-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 40px;
}
.mok-lookbook-header-text {
  text-align: center;
  flex: 1;
}
.mok-lookbook-header-text h2 {
  font-size: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #111111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  letter-spacing: 0px;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
}
.mok-lookbook-header-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fbd914, #f39c12);
  border-radius: 2px;
  margin: 8px auto 0;
}
.mok-lookbook-header-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 620px;
}
.mok-lookbook-header-btn {
  flex-shrink: 0;
  padding: 12px 28px;
  border: 2px solid #111;
  border-radius: 50px;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin-top: 4px;
}
.mok-lookbook-header-btn:hover {
  background: #1c443e;
  color: #fff;
}

/* Grid: 4 columns */
.mok-lookbook-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1.5fr 1.4fr;
  gap: 8px;
  height: 540px;
}

/* Each column is a flex column */
.mok-lookbook-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  min-height: 0;
}

/* Image wrapper base */
.mok-lookbook-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eee;
  border-radius: 4px;
  min-height: 0;
}
.mok-lookbook-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mok-lookbook-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Dark bar (thin middle strip in col 3) */
.mok-dark-bar {
  min-height: 40px;
}

/* Text box (bottom right) */
.mok-lookbook-text-box {
  background-color: #fcf8f2;
  padding: 25px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  min-height: 0;
}
.mok-lookbook-text-box h2 {
  font-size: 30px;
  line-height: 1.12;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
}
.mok-lookbook-btn-yellow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background-color: #fbd914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy-deep);
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}
.mok-lookbook-btn-yellow:hover {
  transform: scale(1.1);
}

/* Hotspot markers */
.mok-hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fcf8f2;
  border: 3px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
  z-index: 2;
}
.mok-hotspot:hover {
  transform: translate(-50%, -50%) scale(1.25);
  background-color: #fbd914;
}


/* ===== LOOKBOOK RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mok-lookbook-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .mok-lookbook-grid {
    grid-template-columns: 1fr 0.6fr 1fr;
    height: 420px;
  }
  .mok-col-2 {
    display: flex;
  }
  .mok-lookbook-text-box h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .mok-kitchen-lookbook {
    padding: 25px 0 40px;
  }
  .mok-lookbook-container {
    padding: 0 8px;
  }
  .mok-lookbook-header-text h2 {
    font-size: 22px;
  }
  .mok-lookbook-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap: 8px;
  }
  .mok-col-2 {
    display: none;
  }
  .mok-lookbook-col {
    height: auto;
  }
  .mok-lookbook-img-wrapper {
    height: 200px;
    flex: none !important;
  }
  .mok-dark-bar {
    display: none;
  }
  .mok-lookbook-text-box {
    height: auto;
    flex: none !important;
    padding: 22px;
  }
  .mok-lookbook-text-box h2 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .mok-lookbook-grid {
    grid-template-columns: 1fr;
  }
}

/* --- PROJECT JOURNEY LIST TIMELINE --- */

/* Hero */
.journey-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.journey-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.journey-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.journey-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(15,23,42,0.85) 100%);
}

.journey-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.journey-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.journey-hero-content p {
  font-size: 20px;
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.journey-list-section {
  background: #fcf8f2;
  padding: 80px 20px;
}

.journey-list-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.journey-list-item {
  display: flex;
  background: #fcf8f2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  min-height: 400px;
}

.journey-list-text {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #1c443e;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(15,76,117,0.3);
}

.journey-list-text h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.journey-list-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey-list-text li {
  font-size: 16px;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.journey-list-text li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 500;
  color: #555555;
  font-size: 18px;
  margin-top: 2px;
}

.journey-list-img {
  flex: 1.2;
  position: relative;
  min-height: 400px;
}

.journey-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .journey-list-item {
    flex-direction: column;
  }
  .journey-list-img {
    min-height: 300px;
  }
  .journey-list-text {
    padding: 40px 30px;
  }
}

/* --- CONTACT PAGE 2-COL DESIGN --- */

/* ===== PAGE TOP HEADER ===== */
.page-top-header {
  text-align: center;
  padding: 10px 20px 0px;
  margin-bottom: -40px; /* Reduce space below header before content */
  position: relative;
  z-index: 10;
}
.page-top-header h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #1c443e;
  font-weight: 600;
  margin: 0;
}

.contact-main {
  background: #fcf8f2;
  padding: 60px 20px; /* Reduced from 80px */
}

.contact-container-2col {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  background: #fcf8f2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.contact-form-side {
  width: 45%;
  padding: 50px;
  background: #fcf8f2;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--navy-deep);
}

.form-header p {
  color: #1c443e;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.unified-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-compact {
  display: flex;
  gap: 20px;
}

.form-group-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-compact label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.form-group-compact input,
.form-group-compact textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fcf8f2;
  font-size: 15px;
  font-family: inherit;
  color: #1c443e;
  transition: all 0.3s ease;
}

.form-group-compact input:focus,
.form-group-compact textarea:focus {
  outline: none;
  border-color: var(--navy-deep);
  background: #fcf8f2;
  box-shadow: 0 0 0 3px rgba(15,76,117,0.1);
}

.submit-btn-compact {
  align-self: flex-start;
  background: #1c443e;
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.submit-btn-compact:hover {
  background: #093452;
}

.contact-map-side {
  width: 55%;
  display: flex;
  flex-direction: column;
  background: #fcf8f2;
}

.contact-quick-info {
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  background: #1c443e;
  color: white;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-info-item i {
  font-size: 24px;
  color: #bae6fd;
}

.quick-info-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  color: #e0f2fe;
}

.quick-info-item span {
  font-size: 15px;
  font-weight: 600;
}

.map-wrapper {
  flex: 1;
  min-height: 400px;
}

@media (max-width: 1024px) {
  .contact-container-2col {
    flex-direction: column;
  }
  .contact-form-side, .contact-map-side {
    width: 100%;
  }
  .contact-quick-info {
    flex-direction: column;
    gap: 20px;
    padding: 40px;
  }
  .form-row-compact {
    flex-direction: column;
    gap: 20px;
  }
}


/* Contact Quick Info Bottom */
.contact-quick-info-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.quick-info-item-bottom {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quick-info-item-bottom i {
  font-size: 20px;
  color: var(--navy-deep);
  margin-top: 3px;
  background: #fcf8f2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-info-item-bottom strong {
  display: block;
  font-size: 14px;
  color: #475569;
  margin-bottom: 2px;
}

.quick-info-item-bottom span {
  font-size: 14px;
  font-weight: 500;
  color: #1c443e;
}

/* --- PREMIUM CARD GRID JOURNEY --- */
.premium-grid-journey {
  background: #fcf8f2;
  padding: 40px 20px 100px; /* Reduced top padding */
}
.premium-grid-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.premium-card {
  background: #fcf8f2;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  position: relative;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
}
.premium-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: #e2e8f0;
}
.premium-card-image {
  height: 260px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  position: relative;
}
.premium-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.premium-card:hover .premium-card-image img {
  transform: scale(1.08);
}
.premium-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 50%);
}
.premium-step-number {
  position: absolute;
  top: 220px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: #1c443e;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 20px rgba(15,76,117,0.3);
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
.premium-card:hover .premium-step-number {
  transform: scale(1.1);
  background: #555555;
}
.premium-card-content {
  padding: 40px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.premium-card-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: #1c443e;
  margin-bottom: 20px;
  padding-right: 50px;
  line-height: 1.3;
}
.premium-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.premium-card-list li {
  font-size: 15px;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
.premium-card-list i {
  color: #555555;
  font-size: 18px;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .premium-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .premium-grid-container {
    grid-template-columns: 1fr;
  }
}


/* --- TRUFROST PRODUCT LAYOUT --- */
.trufrost-section {
  padding: 60px 20px 100px 20px;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f8fafc 100%);
}
.trufrost-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.trufrost-breadcrumbs a {
  color: #1c443e;
  text-decoration: none;
  transition: color 0.3s;
}
.trufrost-breadcrumbs a:hover {
  color: #1c443e;
}
.trufrost-breadcrumbs .sep {
  font-size: 0.6rem;
  color: #94a3b8;
}
.trufrost-breadcrumbs .current {
  color: #1c443e;
}
.category-header-wrap {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.category-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1c443e;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
.category-main-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: #1c443e;
  margin: 0 auto;
  letter-spacing: -0.5px;
  display: inline-block;
}
.category-title-underline {
  width: 60px;
  height: 3px;
  background: #1c443e;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}
.trufrost-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
.trufrost-sidebar {
  width: 320px;
  flex-shrink: 0;
  padding-right: 20px;
  position: relative;
  z-index: 50;
}
.trufrost-sidebar-title {
  font-family: var(--font-body, 'Helvetica Neue', Helvetica, Arial, sans-serif);
  font-size: 22px;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.trufrost-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trufrost-sidebar-item {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.trufrost-sidebar-item:first-child {
  border-top: 1px solid #f0f0f0;
}
.trufrost-sidebar-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: #666666;
  text-decoration: none;
  transition: all 0.3s ease;
}
.trufrost-sidebar-item > a i {
  font-size: 10px;
  color: #888888;
  transition: color 0.3s ease;
}
.trufrost-sidebar-item:hover > a {
  color: #000000;
}
.trufrost-sidebar-item:hover > a i {
  color: #1c443e;
}
.trufrost-sidebar-item.active > a {
  color: #1c443e;
  background: #fcf8f2;
  padding-left: 10px;
}

/* Hover Submenu */
.trufrost-submenu {
  position: absolute;
  top: -1px;
  left: 100%;
  width: 260px;
  background: #fcf8f2;
  border: 1px solid #e2e8f0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.trufrost-sidebar-item:hover .trufrost-submenu {
  opacity: 1;
  visibility: visible;
}
.trufrost-submenu-text {
  padding: 10px 20px;
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}
.trufrost-submenu-link {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1c443e;
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid #f1f5f9;
  transition: background 0.2s ease, color 0.2s ease;
}
.trufrost-submenu-link:hover {
  background: #fcf8f2;
  color: #555555;
}

/* Content Area */
.trufrost-content {
  flex: 1;
  display: flex;
  gap: 50px;
}
.trufrost-image-wrapper {
  flex: 1.2;
  height: 500px;
}
.trufrost-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trufrost-content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trufrost-content-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.3;
}
.trufrost-content-text p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.trufrost-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1c443e;
  background: transparent;
  border: 1px solid #1c443e;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.trufrost-btn:hover {
  background: #1c443e;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .trufrost-container {
    flex-direction: column;
  }
  .trufrost-sidebar {
    width: 100%;
  }
  .trufrost-submenu {
    display: none;
  }
  .trufrost-content {
    flex-direction: column;
  }
  .trufrost-image-wrapper {
    height: 300px;
  }
}

/* --- NEW SUBMENU LIST STYLES --- */
.trufrost-submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trufrost-submenu-list li {
  border-bottom: 1px solid #f1f5f9;
}
.trufrost-submenu-list li:last-child {
  border-bottom: none;
}
.trufrost-submenu-list a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  color: #1c443e;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.trufrost-submenu-list a:hover {
  background: #fcf8f2;
  color: #1c443e;
}

/* --- TRUFROST PRODUCT GRID REDESIGN --- */
.trufrost-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.trufrost-product-card {
  display: flex;
  flex-direction: column;
  background: #fcf8f2;
  border: none;
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(61, 51, 38, 0.04);
  text-decoration: none;
}

.trufrost-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 51, 38, 0.08);
}

.trufrost-product-image-container {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcf8f2;
  padding: 15px;
  border-radius: 12px;
  border: none;
  overflow: hidden;
}

.trufrost-product-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
}

.trufrost-product-card:hover .trufrost-product-image {
  transform: scale(1.05);
}

.trufrost-product-no-image {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.trufrost-product-info {
  padding: 20px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.trufrost-product-category {
  font-size: 0.65rem;
  font-weight: 500;
  color: #1c443e;
  background: #fcf8f2;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
  align-self: flex-start;
}

.trufrost-product-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c443e;
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.trufrost-product-desc {
  font-size: 0.85rem;
  color: #1c443e;
  line-height: 1.5;
  margin-bottom: 20px;
}

.trufrost-product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 25px;
  border: 1px solid #f1f5f9;
  background: #fcf8f2;
  padding: 12px;
  border-radius: 8px;
}

.trufrost-spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  line-height: 1.4;
}

.spec-key {
  color: #1c443e;
  font-weight: 500;
}

.spec-value {
  color: #1c443e;
  font-weight: 500;
  text-align: right;
}

.trufrost-product-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fcf8f2;
  color: #1c443e;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trufrost-product-card:hover .trufrost-product-btn {
  background: #1c443e;
  color: #ffffff;
  border-color: #1c443e;
  box-shadow: 0 4px 12px rgba(61, 51, 38, 0.1);
}

.trufrost-product-btn i {
  transition: transform 0.3s ease;
}

.trufrost-product-card:hover .trufrost-product-btn i {
  transform: translateX(4px);
}

/* --- GLOBAL PREMIUM SHINE SWEEP ANIMATION FOR CARDS --- */
.trufrost-product-card, .product-card, .category-card, .about-op-row, .mok-cta-card {
  position: relative;
  overflow: hidden;
}

.trufrost-product-card::after, .product-card::after, .category-card::after, .about-op-row::after, .mok-cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.45) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 10;
}

.trufrost-product-card:hover::after, .product-card:hover::after, .category-card:hover::after, .about-op-row:hover::after, .mok-cta-card:hover::after {
  left: 150%;
}

/* --- GLOBAL BUTTONS EDITORIAL HOVER ANIMATION --- */
.trufrost-product-btn, .product-card-btn, .mok-cta-btn-dark, .mok-cta-btn-orange, .sp-btn-primary, .btn-primary {
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  letter-spacing: 1px !important;
}

.trufrost-product-btn:hover, .product-card-btn:hover, .mok-cta-btn-dark:hover, .mok-cta-btn-orange:hover, .sp-btn-primary:hover, .btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 8px 20px rgba(61, 51, 38, 0.2) !important;
  letter-spacing: 1.8px !important;
}

@media (max-width: 1024px) {
  .trufrost-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .trufrost-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CATALOG MODULE STYLES
   Mall of Kitchen — Product Catalog
   ============================================================ */

/* ── Catalog CSS Variables ── */
:root {
  --blue-primary: #1c443e;
  --blue-secondary: #544738;
  --navy-deep: #1c443e;
  --gray-light: #fcf8f2;
  --gray-dark: #143632;
  --white: #ffffff;
  --cat-primary: #1c443e;
  --cat-secondary: #544738;
  --cat-accent: #d1a556;
  --cat-accent-alt: #1c443e;
  --cat-text-light: #e0e0e0;
  --cat-text-dark: #333333;
  --cat-card-bg: #ffffff;
  --cat-sidebar-bg: #f8f9fa;
  --cat-radius: 12px;
  --cat-radius-sm: 8px;
  --cat-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --cat-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --cat-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --cat-shadow-hover: 0 12px 36px rgba(233, 69, 96, 0.15);
  --cat-transition: 0.3s ease;
}

/* ============================================================
   1. CATALOG LAYOUT
   ============================================================ */
.catalog-layout {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  min-height: 60vh;
}

.catalog-content {
  flex: 1;
  min-width: 0;
}

/* ============================================================
   2. SIDEBAR NAVIGATION
   ============================================================ */
.catalog-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  background: var(--cat-card-bg);
  border-radius: var(--cat-radius);
  box-shadow: var(--cat-shadow);
  border: 1px solid #eef0f3;
  padding: 1.5rem;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
  transition: transform var(--cat-transition), box-shadow var(--cat-transition);
}

.catalog-sidebar::-webkit-scrollbar {
  width: 4px;
}
.catalog-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 4px;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--cat-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  padding-left: 12px;
  border-left: 3px solid var(--cat-accent);
  border-bottom: 1px solid #eef0f3;
}

/* ── Sidebar Tree ── */
.sidebar-tree {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-tree ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 1rem;
}

.tree-item {
  position: relative;
}

.tree-item > a,
.tree-item > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  border-radius: var(--cat-radius-sm);
  cursor: pointer;
  transition: all var(--cat-transition);
  text-decoration: none;
  user-select: none;
}

.tree-item > a:hover,
.tree-item > span:hover {
  background: rgba(233, 69, 96, 0.06);
  color: var(--cat-accent);
}

.tree-item.active > a,
.tree-item.active > span {
  background: rgba(233, 69, 96, 0.08);
  color: var(--cat-accent);
  font-weight: 500;
  border-left: 3px solid var(--cat-accent);
  padding-left: calc(1rem - 3px);
}

/* Chevron toggle */
.tree-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #a0aec0;
  font-size: 10px;
  border-radius: 4px;
  transition: all var(--cat-transition);
  flex-shrink: 0;
  padding: 0;
  margin-left: auto;
}

.tree-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--cat-accent);
}

.tree-toggle i,
.tree-toggle .fa,
.tree-toggle .fas {
  transition: transform var(--cat-transition);
  transform: rotate(0deg);
}

.tree-item.expanded > a .tree-toggle i,
.tree-item.expanded > span .tree-toggle i,
.tree-item.expanded > a .tree-toggle .fa,
.tree-item.expanded > span .tree-toggle .fa,
.tree-item.expanded > a .tree-toggle .fas,
.tree-item.expanded > span .tree-toggle .fas {
  transform: rotate(90deg);
}

/* Children container (hidden by default) */
.tree-children {
  display: none;
  overflow: hidden;
}

.tree-item.expanded > .tree-children {
  display: block;
}

/* ============================================================
   3. BREADCRUMBS
   ============================================================ */
.catalog-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 13px;
  font-family: var(--font-body);
  background: #fcf8f2;
  border-radius: 50px;
  border: 1px solid #eef0f3;
}

.catalog-breadcrumb a {
  color: #718096;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--cat-transition);
}

.catalog-breadcrumb a:hover {
  color: var(--cat-accent);
}

.catalog-breadcrumb .breadcrumb-separator {
  color: #cbd5e0;
  font-size: 10px;
  margin: 0 0.15rem;
}

.catalog-breadcrumb .breadcrumb-current {
  color: var(--cat-primary);
  font-weight: 500;
  pointer-events: none;
}

/* ============================================================
   4. PRODUCTS HOME — Hero + Category Grid
   ============================================================ */
.catalog-home {
  width: 100%;
}

/* Hero Banner */
.catalog-hero {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--cat-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--cat-shadow-md);
}

.catalog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(15, 52, 96, 0.6) 50%,
    rgba(233, 69, 96, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.catalog-hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.catalog-hero-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  line-height: 1.6;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  background: var(--cat-card-bg);
  border-radius: var(--cat-radius);
  overflow: hidden;
  box-shadow: var(--cat-shadow);
  transition: transform var(--cat-transition), box-shadow var(--cat-transition);
  text-decoration: none;
  display: block;
  border: 1px solid #eef0f3;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cat-shadow-lg);
}

.category-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-image img {
  transform: scale(1.05);
}

.category-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.75) 0%,
    rgba(26, 26, 46, 0.15) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.category-card-gradient h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.category-card-body {
  padding: 1rem 1.25rem;
}

.category-card-body p {
  font-size: 13px;
  color: #718096;
  margin: 0;
  line-height: 1.5;
}

.category-child-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  background: rgba(233, 69, 96, 0.1);
  color: var(--cat-accent);
  font-size: 11px;
  font-weight: 500;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* ============================================================
   5. PRODUCT LISTING GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--cat-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform var(--cat-transition), box-shadow var(--cat-transition);
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cat-shadow-md);
}

.product-card-image {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcf8f2;
  overflow: hidden;
  padding: 1rem;
}

.product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--cat-primary);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.product-card-body .product-description {
  font-size: 13px;
  color: #718096;
  line-height: 1.5;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--cat-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--cat-transition);
  align-self: flex-start;
}

.product-card-btn:hover {
  background: #d43350;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.35);
}

/* ============================================================
   6. PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: block;
}

/* ── Gallery ── */
.product-gallery {
  position: relative;
}

.gallery-main {
  width: 100%;
  border-radius: var(--cat-radius);
  overflow: hidden;
  background: #fcf8f2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 500px;
  box-shadow: var(--cat-shadow);
}

.gallery-main img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.1) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}
.gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}

.gallery-thumbs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--cat-radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all var(--cat-transition);
  flex-shrink: 0;
}

.gallery-thumbs img:hover {
  opacity: 0.85;
  border-color: #cbd5e0;
}

.gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--cat-accent);
  box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.2);
}

/* ── Product Info ── */
.product-info {
  padding: 0.5rem 0;
}

.product-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--cat-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.product-info .product-long-description {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Features list */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
}

.product-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 500;
  color: var(--cat-accent);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Specs table */
.product-specs {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 2rem;
  border-radius: var(--cat-radius);
  overflow: hidden;
  box-shadow: var(--cat-shadow);
}

.product-specs th,
.product-specs td {
  padding: 0.75rem 1.15rem;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid #eef0f3;
}

.product-specs th {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--cat-primary);
  background: #fcf8f2;
  width: 40%;
}

.product-specs td {
  color: #4a5568;
  background: var(--cat-card-bg);
}

.product-specs tr:nth-child(even) th {
  background: #f1f3f6;
}

.product-specs tr:nth-child(even) td {
  background: #fafbfc;
}

.product-specs tr:last-child th,
.product-specs tr:last-child td {
  border-bottom: none;
}

/* Brochure download button */
.product-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: var(--cat-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--cat-transition);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.25);
}

.product-brochure-btn i {
  font-size: 16px;
}

.product-brochure-btn:hover {
  background: #d43350;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.35);
}

/* Related products */
.related-products {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eef0f3;
}

.related-products h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--cat-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.related-products-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
}

/* ============================================================
   7. LIGHTBOX
   ============================================================ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
}

.lightbox-image-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.25s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--cat-transition);
  z-index: 2;
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--cat-accent);
  border-color: var(--cat-accent);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--cat-transition);
  z-index: 2;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ============================================================
   8. SKELETON LOADERS
   ============================================================ */
@keyframes skeleton-shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}

.skeleton {
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    #eef0f3 25%,
    #e2e5e9 37%,
    #eef0f3 63%
  );
  background-size: 800px 100%;
  border-radius: var(--cat-radius-sm);
}

.skeleton-card {
  background: var(--cat-card-bg);
  border-radius: var(--cat-radius);
  overflow: hidden;
  box-shadow: var(--cat-shadow);
}

.skeleton-image {
  width: 100%;
  height: 220px;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    #eef0f3 25%,
    #e2e5e9 37%,
    #eef0f3 63%
  );
  background-size: 800px 100%;
}

.skeleton-text {
  height: 14px;
  margin: 0.75rem 1.25rem;
  border-radius: 4px;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
  background: linear-gradient(
    90deg,
    #eef0f3 25%,
    #e2e5e9 37%,
    #eef0f3 63%
  );
  background-size: 800px 100%;
}

.skeleton-text:last-child {
  width: 60%;
  margin-bottom: 1.25rem;
}

/* ============================================================
   9. MOBILE SIDEBAR DRAWER
   ============================================================ */
.sidebar-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--cat-transition);
}

.sidebar-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-mobile-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--cat-card-bg);
  color: var(--cat-primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #eef0f3;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--cat-shadow);
  transition: all var(--cat-transition);
  margin-bottom: 1rem;
}

.sidebar-mobile-toggle i {
  font-size: 14px;
  color: var(--cat-accent);
}

.sidebar-mobile-toggle:hover {
  border-color: var(--cat-accent);
  box-shadow: var(--cat-shadow-md);
}

.sidebar-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f1f3f6;
  border: none;
  border-radius: 50%;
  color: #4a5568;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--cat-transition);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.sidebar-close:hover {
  background: var(--cat-accent);
  color: #ffffff;
}

/* ============================================================
   10. PAGINATION
   ============================================================ */
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eef0f3;
}

.catalog-pagination a,
.catalog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  background: var(--cat-card-bg);
  border: 1px solid #eef0f3;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--cat-transition);
}

.catalog-pagination a:hover {
  border-color: var(--cat-accent);
  color: var(--cat-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.15);
}

.catalog-pagination .active {
  background: var(--cat-accent);
  color: #ffffff;
  border-color: var(--cat-accent);
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.3);
}

.catalog-pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.catalog-pagination .pagination-prev,
.catalog-pagination .pagination-next {
  font-size: 12px;
  gap: 0.35rem;
}

/* ============================================================
   11. EMPTY STATES
   ============================================================ */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.empty-state i {
  font-size: 48px;
  color: #cbd5e0;
  margin-bottom: 1.25rem;
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--cat-primary);
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 14px;
  color: #718096;
  max-width: 400px;
  line-height: 1.6;
}

/* ============================================================
   12. BACK TO TOP BUTTON (Catalog scope)
   ============================================================ */
.catalog-layout .back-to-top,
.catalog-layout .scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--cat-accent);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--cat-transition);
  z-index: 100;
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.35);
}

.catalog-layout .back-to-top.visible,
.catalog-layout .scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.catalog-layout .back-to-top:hover,
.catalog-layout .scroll-to-top:hover {
  background: #d43350;
  transform: translateY(-3px);
}

/* ============================================================
   13. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Desktop (> 1024px) — defaults above ── */

/* ── Tablet (768px – 1024px) ── */
@media (max-width: 1024px) {
  .catalog-layout {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .catalog-sidebar {
    width: 240px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail {
    grid-template-columns: 50% 50%;
    gap: 2rem;
  }

  .related-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 768px) {
  .catalog-layout {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  /* Hide sidebar (becomes drawer) */
  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 100vh;
    max-height: 100vh;
    z-index: 1000;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    border: none;
    overflow-y: auto;
  }

  .catalog-sidebar.mobile-open {
    transform: translateX(0);
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.15);
  }

  .sidebar-close {
    display: flex;
  }

  .sidebar-mobile-toggle {
    display: inline-flex;
  }

  /* Grids → single column */
  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-main {
    max-height: 350px;
  }

  .gallery-main img {
    max-height: 350px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .catalog-hero {
    height: 220px;
    border-radius: var(--cat-radius-sm);
  }

  .catalog-hero-overlay {
    padding: 1.5rem;
  }

  .catalog-hero-overlay h1 {
    font-size: 22px;
  }

  .catalog-breadcrumb {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }

  /* Lightbox adjustments */
  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  /* Pagination */
  .catalog-pagination a,
  .catalog-pagination span {
    min-width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

/* ── Small Mobile (< 480px) ── */
@media (max-width: 480px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .product-info h1 {
    font-size: 22px;
  }

  .product-specs th,
  .product-specs td {
    padding: 0.6rem 0.85rem;
    font-size: 12px;
  }

  .gallery-thumbs img {
    width: 48px;
    height: 48px;
  }

  .catalog-pagination {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
}

/* ============================================================
   LAZY IMAGE PLACEHOLDER
   ============================================================ */
.lazy-img {
  background: #eef0f3;
  min-height: 80px;
}

.lazy-loaded {
  background: transparent;
}

/* ============================================================
   ARC PROCESS SLIDER (Zlaark Style)
   ============================================================ */
.mok-process-arc-scroll-wrapper {
  position: relative;
  height: 550vh; /* Scroll track length (determines scroll duration - longer keeps locked longer) */
  background: #fcf8f2;
}

.mok-process-arc.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.mok-process-arc {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fcf8f2;
  padding: 40px 0;
  text-align: center;
  font-family: inherit;
}
.mok-arc-header {
  margin-bottom: 20px;
}
.mok-arc-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #1c443e;
  text-transform: uppercase;
}
.mok-arc-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1c443e;
  margin-top: 10px;
  margin-bottom: 10px;
}
.mok-arc-step-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.mok-arc-container {
  position: relative;
  width: 100%;
  height: 380px; /* Reduced container height from 480px to close gap below text */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mok-arc-wrapper {
  position: absolute;
  top: 30px; /* Start below title */
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
}

/* The giant circle */
.mok-arc-circle {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -700px;
  width: 1400px;
  height: 1400px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
}

/* Dots along the circle */
.mok-arc-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px; /* Center on border */
  cursor: pointer;
  transform-origin: 25px 725px; /* Radius is 700px! Pivot from circle center (700px + 25px offset) */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mok-arc-dot span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fcf8f2;
  border: 2px solid #e2e8f0;
  font-weight: 600;
  color: #1c443e;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.mok-arc-dot:hover span {
  border-color: #cbd5e1;
}

.mok-arc-dot.active span {
  background: var(--warm-gold); /* Brand Gold */
  border-color: var(--warm-gold);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 0 20px rgba(61, 51, 38, 0.2);
}

/* Content Area */
.mok-arc-content-wrapper {
  position: relative;
  margin-top: 115px; /* Adjusted to prevent active dot overlap */
  width: 100%;
  max-width: 900px; /* Increased from 600px to ensure details fit on one line */
  min-height: 100px;
}
.mok-arc-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.mok-arc-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mok-arc-content h3 {
  font-size: 2rem;
  font-weight: 400; /* Serif-like elegance if wanted, but follow brand */
  color: #1c443e;
  margin-bottom: 8px; /* Reduced margin-bottom to close gap to paragraph text */
}
.mok-arc-content p {
  color: #1c443e;
  font-size: 1.1rem;
  line-height: 1.6;
  white-space: nowrap;
}

/* Pagination */
.mok-arc-pagination-wrapper {
  margin-top: auto;
  padding-bottom: 15px; /* Reduced bottom padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Reduced gap from 15px */
}
.mok-arc-counter {
  font-size: 0.9rem;
  color: #94a3b8;
  letter-spacing: 2px;
}
.mok-arc-counter span {
  color: #1c443e;
  font-weight: 600;
}
.mok-arc-pagination {
  display: flex;
  gap: 10px;
}
.mok-arc-page {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mok-arc-page.active {
  background: var(--warm-gold);
  transform: scale(1.3);
}

@media(max-width: 768px) {
  .mok-arc-circle {
    width: 800px;
    height: 800px;
    margin-left: -400px;
  }
  .mok-arc-dot {
    transform-origin: 25px 425px; /* Radius is 400px! Pivot from circle center (400px + 25px offset) */
  }
  .mok-arc-title { font-size: 1.8rem; }
  .mok-arc-content h3 { font-size: 1.5rem; }
  .mok-arc-content p {
    white-space: normal;
    font-size: 0.95rem;
  }
}

/* ============================================================
   GLOBAL CTA SECTION (Zlaark Style - Premium Dark Slate Theme)
   ============================================================ */
.mok-global-cta {
  background: #fcf8f2;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  font-family: inherit;
}

.mok-cta-container {
  max-width: 1200px;
  width: 100%;
}

.mok-cta-card {
  position: relative;
  background: linear-gradient(135deg, #1c443e 0%, #143632 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 70px 80px;
  box-shadow: 0 30px 60px rgba(61, 51, 38, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Decorative background circles - soft white glow */
.mok-cta-deco-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.mok-cta-deco-circle.circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
}
.mok-cta-deco-circle.circle-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: 250px;
}
.mok-cta-deco-circle.circle-3 {
  width: 800px;
  height: 800px;
  top: -100px;
  right: -300px;
}

.mok-cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.mok-cta-left {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.mok-cta-eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mok-cta-title {
  font-size: 3.5rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 40px;
}

.mok-cta-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fcf8f2;
  color: #1c443e !important;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mok-cta-btn-dark:hover {
  background: #fcf8f2;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.mok-cta-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Glassmorphic floating card */
.mok-cta-float-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px;
  border-radius: 24px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.mok-cta-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.mok-status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-green 2s infinite;
}

.mok-cta-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.mok-avatar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  z-index: 2;
}
.mok-avatar-icon.dark {
  background: #fcf8f2;
  color: #1c443e;
  font-size: 0.8rem;
  font-weight: 500;
}
.mok-avatar-line {
  height: 1px;
  width: 30px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 -5px;
  z-index: 1;
}

.mok-cta-float-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.mok-cta-float-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.5;
}

.mok-cta-btn-orange {
  display: block;
  width: 100%;
  text-align: center;
  background: #fcf8f2;
  color: #1c443e !important;
  padding: 16px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mok-cta-btn-orange:hover {
  background: #fcf8f2;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

@media(max-width: 1024px) {
  .mok-cta-content {
    flex-direction: column;
    text-align: center;
  }
  .mok-cta-card {
    padding: 40px 20px;
  }
  .mok-cta-right {
    justify-content: center;
    width: 100%;
  }
  .mok-cta-title {
    font-size: 2.5rem;
  }
  .mok-cta-avatars {
    justify-content: center;
  }
  .mok-cta-status {
    justify-content: center;
  }
}

/* ============================================================
   ABOUT US PAGE STYLES (Zlaark-Inspired Aesthetic)
   ============================================================ */
.about-hero-section {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 40px;
  max-width: 900px;
}

.about-hero-eyebrow {
  font-size: 0.95rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.about-hero-title .highlight {
  color: #ffffff;
}

.about-hero-desc {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== EDITORIAL INTRO SECTION ===== */
.about-editorial-section {
  padding: 120px 0;
  background-color: #fcf8f2;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.editorial-visual {
  position: relative;
  width: 100%;
}

.editorial-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(61, 51, 38, 0.1);
  z-index: 2;
}

.editorial-main-img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-visual:hover .editorial-main-img {
  transform: scale(1.05);
}

.editorial-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--electric-teal, #10b981);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.2;
}

.editorial-content {
  padding-left: 20px;
}

.editorial-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #1c443e;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 30px;
  font-family: var(--font-heading, inherit);
}

.editorial-text-content {
  margin-bottom: 40px;
}

.editorial-lead {
  font-size: 1.2rem;
  color: #143632;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

.editorial-body {
  font-size: 1.05rem;
  color: #1c443e;
  line-height: 1.7;
  margin-bottom: 20px;
}

.editorial-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
}

.ed-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fcf8f2;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.ed-feature:hover {
  background: #fcf8f2;
  border-color: var(--electric-teal, #10b981);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(61, 51, 38, 0.05);
}

.ed-feature i {
  color: var(--electric-teal, #10b981);
  font-size: 1.2rem;
}

.ed-feature span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1c443e;
}

@media(max-width: 1024px) {
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .editorial-content {
    padding-left: 0;
  }
  .editorial-title {
    font-size: 2.3rem;
  }
}

/* Core Pillars */
.about-pillars-section {
  padding: 100px 0;
  background-color: #fcf8f2; /* Warm beige highlight background */
}

.about-pillars-header {
  margin-bottom: 60px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-pillar-card {
  background: #fcf8f2;
  padding: 0;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-pillar-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.about-pillar-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-pillar-card:hover .about-pillar-image-wrapper img {
  transform: scale(1.05);
}

.about-pillar-content {
  padding: 40px;
}

.about-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(61, 51, 38, 0.05);
  border-color: rgba(61, 51, 38, 0.1);
}

.about-pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(61, 51, 38, 0.04);
  color: var(--electric-teal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.about-pillar-card h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #1c443e;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.pillar-desc {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 15px;
}

.pillar-subtext {
  font-size: 0.95rem;
  color: #1c443e;
  line-height: 1.6;
}

/* Timeline Flow */
.about-workflow-section {
  padding: 100px 0;
  background: #fcf8f2;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-timeline-item {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(61, 51, 38, 0.08);
  cursor: pointer;
  text-align: left;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 51, 38, 0.95) 0%, rgba(61, 51, 38, 0.6) 60%, rgba(61, 51, 38, 0.2) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.about-timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 51, 38, 0.25);
  border-color: rgba(61, 51, 38, 0.2);
}

.about-timeline-item:hover::before {
  background: linear-gradient(to top, rgba(61, 51, 38, 0.98) 0%, rgba(61, 51, 38, 0.75) 60%, rgba(61, 51, 38, 0.25) 100%);
}

.about-timeline-num {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-heading);
  z-index: 2;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.about-timeline-item:hover .about-timeline-num {
  color: rgba(255, 255, 255, 0.45);
}

.about-timeline-content {
  position: relative;
  z-index: 2;
}

.about-timeline-content h4 {
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.about-timeline-content p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Operations */
.about-operations-section {
  padding: 100px 0;
  background-color: #fcf8f2;
}

.about-operations-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.about-op-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  background: #fcf8f2;
  border-radius: 32px;
  padding: 45px;
  box-shadow: 0 15px 45px rgba(61, 51, 38, 0.03);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.about-op-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(61, 51, 38, 0.07);
}

.about-op-row.alternate {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-op-img-col {
  position: relative;
  width: 100%;
  height: 380px;
}

.about-op-img-col::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 2px solid #1c443e;
  border-radius: 20px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-op-row:hover .about-op-img-col::before {
  transform: translate(-5px, -5px);
  border-color: #1c443e;
}

.about-op-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.about-op-text-col {
  padding: 0;
  text-align: left;
}

.about-op-text-col h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #1c443e;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.about-op-text-col p {
  font-size: 1rem;
  color: #1c443e;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-op-text-col p:last-child {
  margin-bottom: 0;
}

/* Minimal Timeline Feature List */
.about-op-feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 35px;
  position: relative;
}

.about-op-feature-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #fcf8f2;
  z-index: 1;
}

.op-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.op-feature-row:hover {
  transform: translateX(8px);
}

.op-feature-icon-minimal {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcf8f2;
  border: 2px solid #e2e8f0;
  color: #1c443e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
}

.op-feature-row:hover .op-feature-icon-minimal {
  border-color: var(--electric-teal, #10b981);
  color: var(--electric-teal, #10b981);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
  background: #f0fdf4;
  transform: scale(1.1);
}

.op-feature-text-minimal {
  padding-top: 2px;
}

.op-feature-text-minimal h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1c443e;
  margin-top: 0;
  margin-bottom: 6px;
  font-family: var(--font-heading, inherit);
  transition: color 0.3s ease;
}

.op-feature-row:hover .op-feature-text-minimal h4 {
  color: var(--electric-teal, #10b981);
}

.op-feature-text-minimal p {
  font-size: 1rem;
  color: #1c443e;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== PREMIUM SERVICE & SUPPORT SECTION ===== */
.premium-service-section {
  padding: 120px 0;
  background-color: #fcf8f2; /* light modern background */
}

.premium-service-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.premium-service-title {
  font-size: 2.75rem;
  font-weight: 500;
  color: #1c443e;
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: var(--font-heading, inherit);
}

.premium-service-subtitle {
  font-size: 1.1rem;
  color: #1c443e;
  line-height: 1.7;
}

.premium-service-image-container {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(61, 51, 38, 0.1);
  margin-bottom: 60px;
  position: relative;
}

.premium-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-service-image-container:hover .premium-service-image {
  transform: scale(1.05);
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.premium-service-card {
  background: #fcf8f2;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(61, 51, 38, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(61, 51, 38, 0.08);
  border-color: #cbd5e1;
}

.psc-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  color: var(--electric-teal, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-service-card:hover .psc-icon {
  background: var(--electric-teal, #10b981);
  color: #ffffff;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
}

.premium-service-card h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1c443e;
  margin-bottom: 12px;
  font-family: var(--font-heading, inherit);
}

.premium-service-card p {
  font-size: 1rem;
  color: #1c443e;
  line-height: 1.6;
  margin-bottom: 0;
}

@media(max-width: 1024px) {
  .premium-service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .premium-service-image-container {
    height: 300px;
  }
}

/* ===== LOGOS MARQUEE COMPONENT ===== */
.logos-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}
.logos-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #1c443e;
  margin-bottom: 50px;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}
.marquee-container::before, .marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  animation: scroll-marquee 40s linear infinite;
}
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  min-width: 150px;
  padding: 0 20px;
  background: transparent;
  margin: 0 25px;
}
.logo-box img {
  max-height: 180px;
  max-width: 300px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Responsive */
@media(max-width: 1024px) {
  .about-intro-layout,
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-op-row,
  .about-op-row.alternate {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-op-img-col {
    height: 280px;
    order: -1; /* Keep image on top when stacked */
  }
  
  .about-op-text-col {
    padding: 30px;
  }
  
  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
}

@media(max-width: 576px) {
  .about-timeline {
    grid-template-columns: 1fr;
  }
}

/* ===== GLOBAL HOVER MICRO-INTERACTIONS ===== */

/* Global Cards Hover Effects */
.trufrost-product-card, .mok-cta-card, .about-grid-card, .sp-product-card, .premium-card {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.trufrost-product-card:hover, .mok-cta-card:hover, .about-grid-card:hover, .sp-product-card:hover, .premium-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
}

/* Global Images Hover Effects */
.trufrost-product-image img, .hero-image img, .about-image-wrapper img, .mok-card-img-wrap img {
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.trufrost-product-card:hover .trufrost-product-image img,
.hero-image:hover img,
.about-image-wrapper:hover img,
.mok-product-card:hover .mok-card-img-wrap img,
.sp-product-card:hover .sp-product-image img {
  transform: scale(1.08) rotate(-1.5deg) !important;
  filter: brightness(1.1) contrast(1.05) !important;
}

/* Global Buttons Hover Effects */
.btn, [class*="-btn-"], .sp-button, .about-hero-btn {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, [class*="-btn-"]:hover, .sp-button:hover, .about-hero-btn:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
  letter-spacing: 0.5px;
}

.btn::before, [class*="-btn-"]::before, .sp-button::before, .about-hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
  z-index: -1;
  pointer-events: none;
}

.btn:hover::before, [class*="-btn-"]:hover::before, .sp-button:hover::before, .about-hero-btn:hover::before {
  left: 100%;
}

/* ===== MOBILE HEADER & DRAWER RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .topbar {
    position: relative !important;
    background-color: #1c443e !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 20px !important;
    height: 70px !important;
    box-sizing: border-box !important;
  }
  .brand-lockup {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }
  .brand-lockup a {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }
  .brand-lockup img {
    height: 50px !important;
    transform: scale(2.5) !important;
    transform-origin: left center !important;
    margin-left: 20px !important;
  }
  .mobile-nav-actions {
    display: flex !important;
  }
}

/* Drawer styles */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #143632;
  border-left: 1.5px solid #d1a556;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu-drawer.show {
  right: 0;
}
.mobile-menu-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu-close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}
.mobile-search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}
.mobile-search-input {
  background: transparent;
  border: none;
  color: white;
  outline: none;
  font-size: 0.9rem;
  padding: 6px;
  width: 100%;
}
.mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mobile-search-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-list li {
  margin-bottom: 10px;
}
.mobile-nav-link {
  display: block;
  padding: 10px 0;
  color: white !important;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}
.mobile-nav-link.active {
  color: #ebdcb1 !important;
}
.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: white;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
}
.mobile-submenu {
  list-style: none;
  padding-left: 15px;
  margin-top: 5px;
  border-left: 1px dashed rgba(255, 255, 255, 0.15);
}
.mobile-submenu li {
  margin-bottom: 5px;
}
.mobile-submenu a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-submenu a:hover {
  color: white !important;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ===== HOME PAGE RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .split-hero-left {
    padding-top: 100px !important;
  }
}

@media (max-width: 768px) {
  .split-hero-title {
    font-size: 2.5rem !important;
  }
  .split-hero-desc {
    font-size: 1rem !important;
    margin-bottom: 25px !important;
  }
  .split-hero-left {
    padding: 100px 20px 40px 20px !important;
  }
  .split-hero-features {
    padding: 20px !important;
    gap: 20px !important;
  }
}

@media (max-width: 576px) {
  .split-hero {
    min-height: auto !important;
    padding-bottom: 40px !important;
  }
  .split-hero::before {
    background: linear-gradient(to bottom, rgba(20, 54, 50, 0.95) 0%, rgba(20, 54, 50, 0.85) 100%) !important;
  }
  .split-hero-title {
    font-size: 2.1rem !important;
  }
  .split-hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .split-btn-primary, .split-btn-outline {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    padding: 14px 20px !important;
  }
  .split-hero-features {
    flex-direction: column !important;
    gap: 25px !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Category Grid Responsiveness */
@media (max-width: 1024px) {
  .mok-tru-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 576px) {
  .mok-tru-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .mok-tru-card img {
    height: 250px !important;
  }
  .mok-tru-label {
    font-size: 18px !important;
    padding: 20px 15px !important;
  }
  .mok-tru-header h2 {
    font-size: 28px !important;
  }
  .mok-tru-section {
    padding: 50px 0 !important;
  }
}

/* Premium About Section Responsiveness */
@media (max-width: 1024px) {
  .mok-about-premium-layout {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .mok-premium-title {
    font-size: 32px !important;
    margin-bottom: 20px !important;
  }
  .mok-about-premium {
    padding: 60px 0 !important;
  }
  .mok-about-premium-visual {
    width: 100% !important;
    height: 350px !important;
  }
  .mok-visual-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 576px) {
  .mok-premium-stats {
    flex-direction: column !important;
    gap: 25px !important;
    padding: 20px 0 !important;
  }
  .mok-stat-num {
    font-size: 32px !important;
  }
  .mok-about-premium-visual {
    height: 280px !important;
  }
  .mok-visual-float-card {
    padding: 10px 15px !important;
  }
}

/* Global responsiveness for auth pages */
@media (max-width: 480px) {
  .auth-card {
    padding: 20px 20px 30px 20px !important;
  }
  .auth-title {
    font-size: 1.6rem !important;
  }
}



/* Equipment Grid and Cards */
.mok-equip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.mok-equip-card {
  width: calc(50% - 10px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
}

@media (max-width: 768px) {
  .mok-equip-card {
    width: 100% !important;
  }
}

/* Fix for inline equipment cards on mobile */
@media (max-width: 768px) {
  .mok-equip-panel > div {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .mok-equip-panel > div > div {
    width: 100% !important;
  }
  .mok-equip-panel {
    padding: 20px !important;
  }
}


/* Extended fix for tablet responsiveness */
@media (max-width: 1024px) {
  .mok-equip-panel > div {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .mok-equip-panel > div > div {
    width: 100% !important;
  }
  .mok-equip-panel {
    padding: 20px !important;
  }
}


/* ============================================
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
   ============================================ */
@media (max-width: 1024px) {
  /* Navbar */
  .topnav.left-nav,
  .topnav.right-nav {
    display: none !important;
  }
  .mobile-nav-actions {
    display: flex !important;
  }
  .topbar {
    padding: 15px 20px !important;
  }
  .brand-mark {
    width: 40px; height: 40px; font-size: 18px;
  }
  .brand-name {
    font-size: 16px;
  }
  
  /* Layout Spacing */
  :root {
    --section-padding: 40px;
  }
  
  /* Split Hero */
  .split-hero {
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
  }
  .split-hero-left {
    width: 100% !important;
    padding: 120px 20px 40px 20px !important;
    text-align: center;
  }
  .split-hero-actions {
    justify-content: center;
  }
  .split-hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }

  /* Custom-Built Equipment Split Section */
  .mok-split-wrapper {
    flex-direction: column !important;
  }
  .mok-split-left {
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    padding: 40px 20px !important;
  }
  .mok-split-right {
    width: 100% !important;
  }
  .mok-split-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .mok-split-menu a {
    padding: 10px 15px !important;
    font-size: 14px !important;
  }
  
  /* Products Grid */
  .mok-tru-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
  }
  
  /* About Premium */
  .mok-about-premium-layout {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .mok-about-premium-content,
  .mok-about-premium-visual {
    width: 100% !important;
  }
  .mok-premium-title {
    font-size: 2rem !important;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .footer-top {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px;
  }
  
  /* Service process sections etc */
  .mok-process-grid,
  .mok-premium-grid,
  .value-grid,
  .why-mok-grid,
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .contact-layout {
    flex-direction: column !important;
  }
  .contact-info, .contact-form {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .split-hero-title {
    font-size: 2rem !important;
  }
  .mok-tru-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  .mok-tru-grid {
    grid-template-columns: 1fr !important;
  }
  .split-hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .split-btn-primary, .split-btn-outline {
    width: 100%;
    text-align: center;
  }
  /* Typography limits */
  h1, .mok-premium-title { font-size: 1.8rem !important; }
  h2 { font-size: 1.6rem !important; }
  h3 { font-size: 1.4rem !important; }
}

