/* ===== The Health House Thailand — 1:1 match with thehealthhouse.nl ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #021152;
  --red: #d53949;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #333;
  --text-light: #777;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== LAYER 1: ANNOUNCEMENT BAR (RED) ===== */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}
.announcement-bar a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}
.announcement-bar a:hover { opacity: 0.85; }
.announcement-bar .divider {
  margin: 0 8px;
  opacity: 0.8;
}

/* ===== LAYER 2: INFO BAR (WHITE) ===== */
.info-bar {
  background: var(--white);
  border-bottom: 1px solid #eee;
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: center;
}
.info-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}
.info-bar-left .icon { font-size: 18px; }
.info-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Search box in info bar */
.search-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #ccc;
  border-radius: 25px;
  padding: 6px 16px;
  gap: 8px;
  min-width: 220px;
}
.search-box .search-icon { font-size: 14px; opacity: 0.5; }
.search-box input {
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  width: 100%;
  background: transparent;
}
.search-box input::placeholder { color: #aaa; }

/* Icon buttons in info bar */
.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  position: relative;
}
.cart-btn .cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--light-gray);
  border-radius: 20px;
  padding: 3px;
}
.lang-switcher button {
  padding: 4px 10px;
  border: none;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  color: var(--navy);
}
.lang-switcher button.active {
  background: var(--navy);
  color: var(--white);
}
.lang-switcher button:hover:not(.active) { background: #e0e0e0; }

/* ===== LAYER 3: MAIN NAV (NAVY) ===== */
.site-header {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 90px;
}
.site-header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-logo img {
  height: 65px;
  filter: brightness(0) invert(1);
}
.header-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--red); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.header-nav a:hover::after { width: 100%; }

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile slide menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.5px;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-lang {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
}
.mobile-menu .mobile-lang button {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.mobile-menu .mobile-lang button.active {
  background: var(--red);
  border-color: var(--red);
}
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.mobile-overlay.open { display: block; }

/* ===== HERO SECTION (exact match THH.nl) ===== */
.page-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 0;
}
/* Subtle background pattern overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-pat-01.svg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* Title — absolutely positioned over the image */
.hero-title {
  position: absolute;
  bottom: 40px;
  left: 30px;
  z-index: 10;
  width: 55%;
  color: var(--white);
}
.hero-title .title-sub {
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero-title h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 82px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
/* "PERSONAL" / "PERSOONLIJK" — outline text effect */
.hero-title h1 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-fill-color: transparent;
}

/* Hero inner — image left + content right */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0 0 0 100px;
}

/* Hero image — gym photo */
.hero-image {
  flex: 0 0 65%;
  min-height: 560px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
/* Diagonal red lines overlay on image */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  right: -80px;
  background-image: url('assets/hero-img-overlay.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* Hero content — navy panel with product */
.hero-content {
  flex: 1;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 75px 30px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.hero-panel-img {
  width: 260px;
  max-width: 90%;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.hero-content .inner-title {
  display: block;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}
.hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.5;
}
/* Hero outlined button — white on navy bg */
.btn-outline-hero {
  display: inline-block;
  padding: 16px 44px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--white);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1.5px;
}
.btn-outline-hero:hover { background: var(--white); color: var(--navy); }

/* General primary button */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.btn-primary:hover { background: var(--red); color: var(--white); }

/* ===== SECTION TITLES (matches "POPULAIR" / "BEST SELLER") ===== */
.section { padding: 60px 40px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ===== PRODUCT GRID (5 columns like original) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.product-card {
  position: relative;
  text-align: left;
}
.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.product-card .badge.coming-soon {
  background: var(--navy);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  margin-bottom: 12px;
}
.product-card .brand {
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 4px;
}
.product-card .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-card .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.product-card .price .old {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  margin-right: 8px;
}
.product-card .coming-soon-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}

/* View more button (outlined, centered) */
.btn-outline {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 40px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== NEWSLETTER / 10% KORTING SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1e6e 50%, #1a0a3e 100%);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
}
.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
}
.newsletter-section .sub {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.newsletter-section h2 {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.newsletter-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 0;
}
.newsletter-form button {
  padding: 16px 30px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: #c02d3d; }

/* ===== CATEGORIES GRID (2-column with images) ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover img { transform: scale(1.05); }
.category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}
.category-card .overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.category-card .overlay .shop-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-transform: uppercase;
}

/* ===== BOXING SECTION (matches "BEN JIJ OOK ZO'N VECHTER?") ===== */
.boxing-section {
  padding: 60px 40px;
  background: var(--white);
}

/* ===== PRE-FOOTER CTA BANNER ===== */
.prefooter-cta {
  background: var(--light-gray);
  padding: 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.prefooter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.prefooter-card {
  text-align: center;
  padding: 50px 40px;
}
.prefooter-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.prefooter-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.prefooter-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.prefooter-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
}
.prefooter-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.prefooter-divider {
  width: 1px;
  height: 120px;
  background: #d0d0d0;
}

/* ===== FOOTER (Modern, GNC-inspired) ===== */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 0;
}
.footer-main {
  padding: 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 50px;
}
.footer-col h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
}
.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--red); }
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  position: relative;
  padding-left: 0;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

/* Contact form in footer */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.footer-form input:focus,
.footer-form textarea:focus {
  border-color: var(--red);
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}
.footer-form textarea {
  min-height: 80px;
  resize: vertical;
}
.footer-form button {
  width: 100%;
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}
.footer-form button:hover {
  background: #c02d3d;
}

/* Newsletter in footer */
.footer-newsletter {
  background: rgba(255,255,255,0.06);
  padding: 30px;
  border-radius: 8px;
  margin: -10px 0;
}
.footer-newsletter h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.newsletter-form input:focus {
  border-color: var(--red);
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.45);
}
.newsletter-form button {
  width: 100%;
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: #c02d3d;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s, transform 0.3s;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}
.footer-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
  color: var(--white);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
}
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--white); }
.footer-sep {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* ===== ABOUT US SECTION ===== */
.about-section {
  padding: 80px 40px;
  background: var(--white);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 60px;
}
.about-label {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.about-label img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}
.about-content .section-subtitle {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about-content .section-title {
  color: var(--navy);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}
.about-text {
  margin: 0;
}
.about-text p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p:last-child {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 30px 20px;
}
.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { flex-direction: column; margin-left: 0; }
  .hero-image { min-height: 400px; }
  .hero-title { width: 70%; bottom: auto; top: 50%; transform: translateY(-50%); }
  .hero-title h1 { font-size: 52px; line-height: 58px; }
  .hero-content { padding: 40px 30px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .prefooter-inner { grid-template-columns: 1fr; }
  .prefooter-divider { width: 80%; height: 1px; margin: 0 auto; }
  .prefooter-card { padding: 30px 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-content .section-title { font-size: 28px; }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  
  /* Header mobile fixes */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .info-bar { padding: 0 12px; height: auto; min-height: 48px; }
  .info-bar-inner { flex-wrap: wrap; gap: 8px; padding: 8px 0; }
  .info-bar-left { font-size: 11px; width: 100%; justify-content: center; text-align: center; }
  .info-bar-right { width: 100%; justify-content: center; gap: 8px; }
  .search-box { min-width: 140px; flex: 1; }
  .search-box input { font-size: 12px; }
  .lang-switcher { gap: 4px; }
  .lang-switcher button { padding: 4px 8px; font-size: 11px; }
  .site-header { padding: 10px 16px; }
  
  /* Content */
  .section { padding: 40px 16px; }
  .hero-title { width: 85%; left: 16px; }
  .hero-title h1 { font-size: 36px; line-height: 42px; }
  .section-title { font-size: 32px; }
  
  /* Footer */
  .footer-main { padding: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px 30px; }
  .footer-newsletter { margin: 0; }
  .footer-bottom { padding: 16px 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  
  /* About page */
  .about-hero h1 { font-size: 28px; }
  .about-hero-desc { font-size: 14px; }
  .about-promise-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .timeline-item { flex-direction: column; gap: 8px; }
  .timeline-year { min-width: auto; text-align: left; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  
  /* Products page */
  .category-filter-inner { flex-wrap: wrap; justify-content: center; }
  .products-banner h1 { font-size: 24px; }
}

@media (max-width: 480px) {
  .info-bar-right .search-box { display: none; }
  .info-bar-right .icon-btn { display: none; }
  .info-bar-left { font-size: 10px; }
  .hero-title h1 { font-size: 28px; line-height: 34px; }
  .hero-title .title-sub { font-size: 12px; }
  .announcement-bar { font-size: 12px; padding: 8px 10px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== ABOUT PAGE HERO ===== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1e6e 50%, #1a0a3e 100%);
  padding: 100px 40px 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(213, 57, 73, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(213, 57, 73, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-hero-sub {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 20px;
}
.about-hero h1 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}
.about-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ABOUT PROMISE SECTION ===== */
.about-promise {
  background: var(--white);
}
.about-promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-promise-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.about-promise-content .section-subtitle {
  text-align: left;
}
.about-promise-title {
  text-align: left !important;
  font-size: 32px !important;
  line-height: 1.2;
}
.about-promise-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== THREE PILLARS ===== */
.about-pillars {
  background: var(--light-gray);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.pillar-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.pillar-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== TIMELINE / OUR STORY ===== */
.about-story {
  background: var(--white);
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 65px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--navy));
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 57px;
  top: 8px;
  width: 19px;
  height: 19px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--red);
  z-index: 1;
}
.timeline-year {
  min-width: 50px;
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  text-align: right;
}
.timeline-content {
  flex: 1;
  padding-left: 30px;
}
.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== ABOUT STATS SECTION ===== */
.about-stats-section {
  background: var(--navy);
  padding: 60px 40px;
}
.about-stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-card-lg {
  text-align: center;
  padding: 30px 20px;
}
.stat-card-lg .stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 8px;
}
.stat-card-lg .stat-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
}

/* ===== LEADERSHIP QUOTE ===== */
.about-quote {
  background: var(--light-gray);
  padding: 80px 40px;
}
.leadership-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.leadership-quote p {
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.leadership-quote cite {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== PRODUCTS PAGE BANNER ===== */
.products-banner {
  background: linear-gradient(135deg, var(--red) 0%, #c02d3d 100%);
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
}
.products-banner-inner {
  max-width: 800px;
  margin: 0 auto;
}
.products-banner h1 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.products-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* ===== PRODUCTS PAGE STYLES ===== */
.products-section {
  background: var(--light-gray);
  padding-bottom: 80px;
}
.products-header {
  text-align: center;
  margin-bottom: 30px;
}
.products-count {
  font-size: 15px;
  color: var(--text-light);
  margin-top: -20px;
  margin-bottom: 20px;
  text-align: center;
}

/* Category Filter Bar */
.category-filter {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.category-filter-inner {
  display: flex;
  gap: 8px;
  justify-content: center;
  min-width: max-content;
}
.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
  white-space: nowrap;
}
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* Product card adjustments for products page */
.products-section .product-grid {
  background: transparent;
}
.products-section .product-card {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.products-section .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.products-coming-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 40px;
  font-style: italic;
}

/* ===== RESPONSIVE (additional for new pages) ===== */
@media (max-width: 1024px) {
  .about-hero h1 { font-size: 36px; }
  .about-promise-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 65px; }
}
@media (max-width: 768px) {
  .about-hero { padding: 60px 20px 50px; }
  .about-hero h1 { font-size: 28px; }
  .about-hero-desc { font-size: 14px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-item::before { display: none; }
  .timeline-item { flex-direction: column; gap: 8px; padding-left: 0; }
  .timeline-year { min-width: auto; text-align: left; }
  .timeline-content { padding-left: 0; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card-lg .stat-number { font-size: 36px; }
  .leadership-quote p { font-size: 18px; }
  .products-banner { padding: 30px 20px; }
  .products-banner h1 { font-size: 24px; }
  .category-filter-inner { justify-content: flex-start; }
  .products-section { padding: 40px 16px; }
}
