/* Türksoyu Karoser — Woodmart-inspired theme */
:root {
  --brand: #E22D31;
  --brand-dark: #c41e22;
  --brand-hover: #c41e22;
  --brand-soft: rgba(226, 45, 49, .1);
  --dark: #222222;
  --dark-deep: #000000;
  --gray-50: #f9f9f9;
  --gray-100: #f3f3f3;
  --gray-200: #e0e0e0;
  --gray-300: #cccccc;
  --gray-500: #777777;
  --gray-600: #666666;
  --gray-700: #444444;
  --gray-900: #242424;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --radius: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1222px;
  --gutter: 15px;
  --header-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  color: var(--gray-900);
  line-height: 1.65;
  background: var(--white);
  font-size: 15px;
  overflow-x: clip;
  min-width: 0;
}
main { overflow-x: clip; min-width: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
.container { width: min(100% - calc(var(--gutter) * 2), var(--max-w)); margin-inline: auto; }
.text-center { text-align: center; }

/* Top bar */
.topbar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 12px;
  color: var(--gray-500);
}
.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1rem;
  min-height: 36px;
  padding: .35rem 0;
}
.topbar-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 0;
}
.topbar-info > * + * {
  padding-left: .65rem;
  border-left: 1px solid var(--gray-200);
}
.topbar-info-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 12px;
}
.topbar-info-item i {
  color: var(--brand);
  font-size: 11px;
  width: 12px;
  text-align: center;
  flex-shrink: 0;
}
.topbar-info-item:hover { color: var(--brand); }
.topbar-social { display: flex; gap: .35rem; align-items: center; }
.topbar-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: auto;
}
.topbar-lang {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.topbar-lang-link {
  color: var(--gray-600);
  text-decoration: none;
  padding: .15rem .25rem;
  border-radius: .2rem;
}
.topbar-lang-link:hover,
.topbar-lang-link.active {
  color: var(--brand);
}
.topbar-lang-sep {
  color: var(--gray-300);
  font-weight: 400;
}
.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-700);
}
.topbar-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

@media (min-width: 992px) {
  .topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; max-width: 200px; }
.main-nav { display: none; flex: 1; }
.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .15rem;
  margin: 0;
  padding: 0;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: .65rem .75rem;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -.01em;
  border-bottom: 2px solid transparent;
  line-height: 1.2;
}
.nav-chevron {
  font-size: 9px;
  margin-left: .3rem;
  opacity: .55;
  transition: transform .2s;
}
.main-nav > ul > li:hover > a .nav-chevron { transform: rotate(180deg); }
.nav-link-icon {
  font-size: 11px;
  margin-right: .35rem;
  color: var(--brand);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}
.nav-dropdown a i {
  width: 14px;
  color: var(--brand);
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
  opacity: .85;
}
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gray-900);
  font-size: 18px;
}
.menu-toggle:hover { border-color: var(--brand); color: var(--brand); }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
}
.mobile-nav a i {
  width: 16px;
  color: var(--brand);
  font-size: 13px;
  text-align: center;
  flex-shrink: 0;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.nav-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  padding: .5rem 0; opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: all .2s; z-index: 50;
}
.main-nav li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a:hover { background: var(--gray-50); color: var(--brand); }
.nav-dropdown--plain a { display: block; gap: 0; padding: .5rem 1rem; line-height: 1.35; }
.mobile-nav { display: none; border-top: 1px solid var(--gray-200); padding: .5rem 0 1rem; }
.mobile-nav.open {
  display: block;
  max-height: calc(100dvh - var(--header-h) - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-nav ul { list-style: none; }
.mobile-nav .sub a { padding-left: 1.75rem; font-size: 13px; color: var(--gray-500); }

@media (min-width: 992px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: 14px;
  border: 2px solid transparent; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--gray-900); }
.btn-outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* Typography blocks from Woodmart/Elementor */
.title-subtitle { font-size: 14px; color: var(--brand); font-weight: 600; margin-bottom: .5rem; text-transform: none; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; line-height: 1.25; }
.section-desc { color: var(--gray-500); max-width: 720px; margin: 0 auto 1rem; }
.section-head { margin-bottom: 2rem; }

/* Hero slider */
.hero--slider,
.hero--woodmart {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
}
@media (min-width: 769px) {
  .hero--slider,
  .hero--woodmart {
    min-height: 720px;
    margin-top: 0;
    border-radius: 8px;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(34,34,34,.72) 100%);
  opacity: .85;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.hero-box {
  max-width: 620px;
  color: var(--white);
}
.hero-brand {
  font-size: 19px;
  color: rgba(255,255,255,.85);
  margin-bottom: .75rem;
  font-weight: 400;
}
.hero-title {
  font-size: clamp(1.75rem, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-hero-light {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: 8px;
}
.btn-hero-light:hover { background: var(--gray-100); color: var(--gray-900); }
.btn-hero-brand {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: 8px;
}
.btn-hero-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: var(--white); }

/* About split 30/70 */
.section { padding: 50px 0; }
.section-alt { background: var(--gray-50); }
.about-split {
  display: grid; gap: 20px; align-items: center;
}
@media (min-width: 769px) {
  .about-split { grid-template-columns: 30% 1fr; gap: 20px; }
}
.about-split-media img { width: 100%; border-radius: var(--radius); }
.about-split-content p { margin-bottom: 1rem; color: var(--gray-500); }

/* Product tiles — homepage style */
.product-grid--home {
  display: grid; gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 769px) {
  .product-grid--home { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.product-tile a { display: block; text-align: center; }
.product-tile-image {
  border-radius: var(--radius); overflow: hidden; background: var(--gray-100);
  aspect-ratio: 1; margin-bottom: .75rem;
  border: 1px solid var(--gray-200);
  transition: border-color .2s;
}
.product-tile:hover .product-tile-image { border-color: var(--brand); }
.product-tile-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-tile:hover .product-tile-image img { transform: scale(1.04); }
.product-tile-title { font-size: 15px; font-weight: 700; color: var(--gray-900); line-height: 1.35; }

/* FAQ split */
.faq-split { display: grid; gap: 30px; align-items: start; }
@media (min-width: 769px) {
  .faq-split { grid-template-columns: 60% 40%; }
}
.faq-split-media img { width: 100%; border-radius: var(--radius); }
.faq-list { margin-top: 1rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: .5rem; background: var(--white); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 1rem 1.1rem; background: none; border: none;
  font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-question::after { content: '+'; color: var(--brand); font-size: 1.2rem; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 1.1rem 1rem; color: var(--gray-500); font-size: 14px; }

/* News */
.news-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: box-shadow .2s, border-color .2s, transform .2s; }
.news-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.news-card-body { padding: 1.5rem; }
.news-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: .85rem;
}
.news-date { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: .35rem; display: flex; align-items: center; gap: .35rem; }
.news-date i { font-size: 11px; opacity: .85; }
.news-card-body h3 { font-size: 16px; font-weight: 700; line-height: 1.4; color: var(--gray-900); overflow-wrap: anywhere; }
.news-card-body p { margin-top: .5rem; color: var(--gray-600); font-size: 14px; line-height: 1.6; }
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .85rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}
.news-card:hover .news-read-more { gap: .55rem; }

/* Instagram */
.insta-grid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 769px) {
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
}
.insta-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.insta-item:hover img { transform: scale(1.06); }

/* Page hero */
.page-hero {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
  padding: 2.5rem 0;
  text-align: center;
}
.page-hero--compact { padding: 2rem 0; }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--gray-900); overflow-wrap: anywhere; line-height: 1.25; }
.page-hero-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  margin-bottom: .5rem;
}
.page-hero-subtitle {
  max-width: 640px;
  margin: .75rem auto 0;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: .75rem; font-size: 13px; color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--brand); }
.page-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.65;
}
.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-head-row .section-head { margin-bottom: 0; text-align: left; }
.section-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}
.section-link:hover { color: var(--brand-dark); }
.section-link i { font-size: 12px; }
.section-desc--left { margin-left: 0; text-align: left; }
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  color: var(--gray-500);
}
.empty-state i {
  display: block;
  font-size: 2rem;
  color: var(--brand);
  margin: 0 auto .75rem;
  opacity: .7;
}
.empty-state p { font-size: 15px; }

/* Corporate pages */
.page-hero--corporate {
  text-align: left;
  padding: 2rem 0 2.25rem;
}
.page-hero-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  margin-bottom: .5rem;
}
.page-hero--corporate .page-hero-subtitle {
  margin: .75rem 0 0;
  max-width: 640px;
}
.page-hero--corporate .breadcrumbs {
  justify-content: flex-start;
  margin-top: 1rem;
}

.corporate-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px) {
  .corporate-layout {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
  }
}

.corporate-sidebar {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 992px) {
  .corporate-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); }
}
.corporate-sidebar-head {
  padding: .85rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.corporate-nav { display: flex; flex-direction: column; padding: .35rem; }
@media (max-width: 991px) {
  .corporate-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: .5rem;
    gap: .35rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .corporate-nav-link { scroll-snap-align: start; }
}
.corporate-nav-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .85rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}
.corporate-nav-link i {
  width: 16px;
  color: var(--brand);
  text-align: center;
  font-size: 12px;
}
.corporate-nav-link:hover { background: var(--white); color: var(--gray-900); }
.corporate-nav-link.active {
  background: var(--white);
  color: var(--brand);
  box-shadow: inset 3px 0 0 var(--brand);
}
.corporate-sidebar-cta {
  padding: 1rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
@media (max-width: 991px) { .corporate-sidebar-cta { display: none; } }
.corporate-sidebar-cta p {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: .65rem;
}
.corporate-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: .75rem;
}
.corporate-cta-link i { color: var(--brand); font-size: 12px; }
.corporate-sidebar-cta .btn { width: 100%; }

.corporate-main { min-width: 0; }
.corporate-intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .corporate-intro { grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
}
.corporate-intro--single { grid-template-columns: 1fr; }
.corporate-intro-media img,
.corporate-apply-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.corporate-intro-content .section-title { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

.corporate-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .corporate-stats { grid-template-columns: repeat(4, 1fr); }
}
.corporate-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
}
.corporate-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: .25rem;
}
.corporate-stat span {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.corporate-values {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .corporate-values { grid-template-columns: repeat(3, 1fr); }
}
.corporate-value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.corporate-value-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(226, 45, 49, .1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
  font-size: 16px;
}
.corporate-value-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: .45rem;
  color: var(--gray-900);
}
.corporate-value-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}

.corporate-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
  border-radius: var(--radius);
  color: var(--white);
}
.corporate-banner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.corporate-banner p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  max-width: 520px;
}

.mission-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .mission-grid { grid-template-columns: 1fr 1fr; }
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}
.mission-card--vision {
  background: var(--gray-50);
}
.mission-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.mission-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.mission-card--vision .mission-card-icon {
  background: var(--dark);
}
.mission-card-head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
}
.mission-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mission-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .65rem;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}
.mission-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.corporate-gallery-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .corporate-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.corporate-gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.corporate-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.corporate-gallery-item:hover img { transform: scale(1.05); }

.hr-policy { margin-bottom: 2rem; }
.hr-policy-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .hr-policy-grid { grid-template-columns: repeat(2, 1fr); }
}
.hr-policy-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.hr-policy-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.hr-policy-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .2rem;
}
.hr-policy-item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.corporate-apply {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
@media (min-width: 768px) {
  .corporate-apply { grid-template-columns: 1.2fr 240px; padding: 2rem; }
}
.corporate-apply-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .65rem;
  color: var(--gray-900);
}
.corporate-apply-content p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.corporate-apply-links { display: grid; gap: .5rem; }
.corporate-apply-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
.corporate-apply-link i { color: var(--brand); width: 16px; text-align: center; }
.corporate-apply-link:hover { color: var(--brand); }

/* Content */
.content-body { padding: 40px 0 60px; }
.prose { color: var(--gray-500); overflow-wrap: anywhere; word-wrap: break-word; }
.prose h2, .prose h3 { color: var(--gray-900); margin: 1.25rem 0 .65rem; }
.prose p { margin-bottom: .85rem; }
.prose ul, .prose ol { margin: .75rem 0 .75rem 1.25rem; }
.prose img { border-radius: var(--radius); margin: 1rem 0; max-width: 100%; height: auto; }
.prose table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}
.prose iframe,
.prose video,
.prose embed {
  max-width: 100%;
  width: 100%;
  border: 0;
}
.prose pre {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* Product detail */
.content-body--compact { padding: 1.5rem 0 2.5rem; }
.product-detail-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.product-detail-head h1 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-top: .5rem;
  line-height: 1.3;
}
.breadcrumbs--left { justify-content: flex-start; margin-top: 0; }
.product-page {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .product-page {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 2rem;
    align-items: start;
  }
}
.product-gallery-main {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
}
.product-gallery-main a { display: block; }
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.product-thumb {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gray-200);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--white);
  flex-shrink: 0;
  transition: border-color .15s;
}
.product-thumb.active { border-color: var(--brand); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-summary { min-width: 0; }
.prose--compact { font-size: 14px; line-height: 1.6; }
.prose--compact h2,
.prose--compact h3,
.prose--compact h4 {
  font-size: .95rem;
  margin: .85rem 0 .35rem;
  font-weight: 700;
}
.prose--compact h3 {
  font-size: 1.05rem;
  margin-top: 1.35rem;
  padding-top: .5rem;
  border-top: 1px solid var(--gray-200);
}
.prose--compact h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.prose--compact p { margin-bottom: .65rem; }
.prose--compact ul,
.prose--compact ol {
  margin: .5rem 0 .65rem 1.1rem;
  padding: 0;
}
.prose--compact li { margin-bottom: .25rem; }
.product-description { margin-bottom: 0; }
.product-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--gray-200);
}
.product-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}
.product-back:hover { color: var(--brand); }
.product-back i { font-size: 11px; }

/* Gallery page */
.gallery-grid {
  display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, .35);
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  color: var(--white);
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 1;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover i { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.references-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
}
@media (min-width: 768px) {
  .references-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .references-grid { grid-template-columns: repeat(4, 1fr); }
}
.reference-item {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.reference-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.reference-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, .3);
  opacity: 0;
  transition: opacity .25s;
}
.reference-item i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  color: var(--white);
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  z-index: 1;
}
.reference-item:hover img { transform: scale(1.04); }
.reference-item:hover::after { opacity: 1; }
.reference-item:hover i { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Contact */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; align-items: stretch; } }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.contact-card-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.contact-card-head h2 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .35rem; }
.contact-card-head p { font-size: 14px; color: var(--gray-500); line-height: 1.55; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item:last-of-type { margin-bottom: 0; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-item h3 { font-size: 11px; color: var(--gray-500); margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.contact-item p, .contact-item a { font-weight: 600; color: var(--gray-900); font-size: 14px; line-height: 1.5; }
.contact-item a:hover { color: var(--brand); }
.contact-social {
  display: flex;
  gap: .5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 15px;
  transition: all .2s;
}
.contact-social a:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* Footer — Woodmart dark footer */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.75); padding: 3rem 0 0; margin-top: 20px;
}
.footer-grid {
  display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-bottom: 2rem;
}
.footer-grid h4 { color: var(--white); font-size: 15px; margin-bottom: 1rem; font-weight: 700; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-grid a:hover { color: var(--white); }
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.social-links { display: flex; gap: .5rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 14px;
  transition: background .2s, transform .2s;
}
.social-links a:hover { background: var(--brand); transform: translateY(-1px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; text-align: center; font-size: 13px; }
.footer-bottom-meta {
  margin-top: .65rem;
  opacity: .75;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .35rem .65rem;
}
.footer-bottom-meta a { color: rgba(255,255,255,.75); }
.footer-bottom-meta a:hover { color: var(--white); }
.footer-bottom-meta span { opacity: .5; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: var(--brand); border-color: var(--brand); }

.btn i { margin-right: .4rem; font-size: .9em; }
.news-article-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--brand);
  font-weight: 600;
}
.error-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  background: var(--gray-50);
}
.error-box {
  text-align: center;
  max-width: 480px;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.error-box-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
}
.error-box h1 { font-size: 1.35rem; font-weight: 700; margin-bottom: .65rem; color: var(--gray-900); }
.error-box p { color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.6; }

.mt-2 { margin-top: 2rem; }

/* ─── Mobile responsive refinements ─── */
@media (max-width: 767px) {
  :root {
    --gutter: 12px;
    --header-h: 56px;
  }

  .section { padding: 36px 0; }
  .content-body { padding: 28px 0 40px; }
  .content-body--compact { padding: 1.25rem 0 2rem; }
  .page-hero { padding: 1.75rem 0; }
  .page-hero--compact { padding: 1.5rem 0; }
  .page-hero--corporate {
    text-align: center;
    padding: 1.5rem 0 1.75rem;
  }
  .page-hero--corporate .breadcrumbs,
  .page-hero--corporate .page-hero-subtitle {
    justify-content: center;
    margin-inline: auto;
  }

  .topbar-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    min-height: 36px;
    padding: .4rem 0;
  }
  .topbar-info {
    flex: 0 1 auto;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
  }
  .topbar-info-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42vw;
  }
  .topbar-info .topbar-info-item:nth-child(2),
  .topbar-info .topbar-info-item:nth-child(3) {
    display: none;
  }
  .topbar-actions {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
    gap: .5rem;
  }
  .topbar-social a {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .logo img { height: 38px; max-width: 170px; }
  .menu-toggle { min-width: 44px; min-height: 44px; }

  .hero--slider,
  .hero--woodmart {
    min-height: min(72vh, 460px);
  }
  .hero-content { padding: 2rem 0 2.25rem; }
  .hero-title { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .hero-desc { font-size: 15px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .product-tile-title {
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .faq-split-media { order: -1; }
  .faq-question {
    font-size: .95rem;
    min-height: 48px;
    align-items: center;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }
  .section-head-row .section-link { white-space: normal; }

  .news-grid { grid-template-columns: 1fr; gap: 16px; }
  .insta-grid { gap: 6px; }

  .corporate-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
  }
  .corporate-banner .btn { width: 100%; }

  .product-detail-head h1 {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
    overflow-wrap: anywhere;
  }
  .breadcrumbs {
    font-size: 12px;
    gap: .3rem;
  }
  .breadcrumbs span:last-child {
    overflow-wrap: anywhere;
    text-align: left;
  }

  .product-gallery-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-inline: -2px;
  }
  .product-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .product-cta .btn { width: 100%; justify-content: center; }
  .product-back { justify-content: center; }

  .contact-grid { gap: 1.25rem; }
  .contact-map iframe { min-height: 260px; }
  .contact-card { padding: 1.35rem; }

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .references-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer { padding-top: 2.25rem; }
  .footer-bottom-meta {
    flex-direction: column;
    gap: .25rem;
  }
  .footer-bottom-meta span[aria-hidden="true"] { display: none; }

  .lightbox { padding: 1rem; }
  .lightbox-close {
    top: max(.75rem, env(safe-area-inset-top));
    right: max(.75rem, env(safe-area-inset-right));
  }

  .error-box { margin-inline: var(--gutter); padding: 2rem 1.25rem; }
}

@media (max-width: 399px) {
  .product-grid--home { grid-template-columns: 1fr; }
  .product-tile-title { font-size: 14px; }
  .corporate-stats { grid-template-columns: 1fr 1fr; }
  .corporate-stat strong { font-size: 1.25rem; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .corporate-layout { gap: 1.5rem; }
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.site-header {
  padding-top: env(safe-area-inset-top, 0);
}
