/* ============================================================
   TENTE Castors & Wheels - Static Replica Stylesheet
   Based on https://www.tente.com/ (Shopware 6 + Bootstrap 5)
   Primary: #193C69 (dark blue) | Secondary: #009CDE (cyan)
   ============================================================ */

/* --- Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* --- CSS Variables --- */
:root {
  --bs-primary: #193C69;
  --bs-primary-rgb: 25, 60, 105;
  --bs-secondary: #009CDE;
  --bs-secondary-rgb: 0, 156, 222;
  --bs-success: #208755;
  --bs-warning: #FF9600;
  --bs-danger: #CC2B14;
  --bs-light: #f9f9f9;
  --bs-dark: #4a545b;
  --bs-white: #fff;
  --bs-gray-100: #f9f9f9;
  --bs-gray-200: #eee;
  --bs-gray-300: #bcc1c7;
  --bs-gray-600: #798490;
  --bs-gray-700: #495057;
  --bs-gray-800: #4a545b;
  --bs-gray-900: #212529;
  --font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-height: 80px;
  --nav-height: 56px;
  --transition-speed: 0.25s;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-family);
  color: var(--bs-gray-900);
  background: var(--bs-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--bs-primary); text-decoration: none; transition: color var(--transition-speed); }
a:hover { color: var(--bs-secondary); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; font-size: 0.95rem; font-weight: 600;
  border: 2px solid transparent; border-radius: 50px;
  cursor: pointer; transition: all var(--transition-speed);
  text-align: center; font-family: var(--font-family);
  white-space: nowrap;
}

.btn-primary {
  background: var(--bs-primary); color: #fff; border-color: var(--bs-primary);
}
.btn-primary:hover { background: #0f2b4d; border-color: #0f2b4d; color: #fff; }

.btn-secondary {
  background: var(--bs-secondary); color: #fff; border-color: var(--bs-secondary);
}
.btn-secondary:hover { background: #007bb3; border-color: #007bb3; color: #fff; }

.btn-outline-primary {
  background: transparent; color: var(--bs-primary); border-color: var(--bs-primary);
}
.btn-outline-primary:hover { background: var(--bs-primary); color: #fff; }

.btn-outline-white {
  background: transparent; color: #fff; border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--bs-primary); }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* --- Skip Links --- */
.skip-to-content {
  position: absolute; top: -100px; left: 0; width: 100%;
  background: #e8edf3; z-index: 9999; text-align: center; padding: 8px;
}
.skip-to-content:focus-within { top: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.header-main {
  position: sticky; top: 0; z-index: 1020;
  background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-top-bar {
  background: var(--bs-primary); color: #fff; font-size: 0.8rem; padding: 4px 0;
}
.header-top-bar .container {
  display: flex; justify-content: flex-end; align-items: center; gap: 16px;
}
.header-top-bar a { color: rgba(255,255,255,0.85); font-size: 0.8rem; }
.header-top-bar a:hover { color: #fff; }

.header-row {
  border-bottom: 1px solid var(--bs-gray-200);
}
.header-row-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height); max-width: 1320px; margin: 0 auto; padding: 0 24px;
}

.header-logo-col { flex-shrink: 0; }
.header-logo-main-link { display: block; }
.header-logo-main-link img { height: 54px; width: auto; object-fit: contain; }

.header-search-col { flex: 1; max-width: 480px; margin: 0 32px; }
.header-search-form {
  display: flex; align-items: center; background: var(--bs-gray-100);
  border-radius: 50px; overflow: hidden; border: 2px solid transparent;
  transition: border-color var(--transition-speed);
}
.header-search-form:focus-within { border-color: var(--bs-secondary); background: #fff; }
.header-search-form input {
  flex: 1; border: none; background: transparent; padding: 12px 20px;
  font-size: 0.9rem; font-family: var(--font-family); outline: none;
}
.header-search-form button {
  background: none; border: none; padding: 12px 16px; cursor: pointer;
  color: var(--bs-gray-600); display: flex; align-items: center;
}
.header-search-form button:hover { color: var(--bs-primary); }

.header-actions-col { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.header-actions-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; font-size: 0.85rem; font-weight: 500;
  color: var(--bs-gray-800); background: none; border: none;
  cursor: pointer; border-radius: 50px; transition: all var(--transition-speed);
  font-family: var(--font-family);
}
.header-actions-btn:hover { background: var(--bs-gray-100); color: var(--bs-primary); }
.header-actions-btn svg { width: 18px; height: 18px; }

.header-offer-btn { position: relative; }
.header-offer-badge {
  position: absolute; top: -2px; right: -4px;
  background: var(--bs-secondary); color: #fff; font-size: 0.65rem;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* --- Mobile Toggle --- */
.header-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--bs-gray-800);
}
.header-mobile-toggle svg { width: 24px; height: 24px; }

/* --- Language Selector Dropdown --- */
.lang-dropdown {
  position: relative; display: inline-block;
}
.lang-dropdown-content {
  display: none; position: absolute; top: 100%; right: 0;
  background: #fff; min-width: 320px; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 12px; padding: 20px; z-index: 1030;
  max-height: 70vh; overflow-y: auto;
}
.lang-dropdown.active .lang-dropdown-content { display: block; }
.lang-dropdown-content h4 { font-size: 0.75rem; text-transform: uppercase; color: var(--bs-gray-600); margin-bottom: 8px; letter-spacing: 0.5px; }
.lang-dropdown-content .lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.lang-dropdown-content .lang-grid a {
  display: block; padding: 6px 10px; border-radius: 6px; font-size: 0.85rem;
  color: var(--bs-gray-800);
}
.lang-dropdown-content .lang-grid a:hover { background: var(--bs-gray-100); color: var(--bs-primary); }
.lang-dropdown-content .lang-region { margin-bottom: 16px; }

/* ============================================================
   MAIN NAVIGATION - Mega Menu
   ============================================================ */
.main-navigation {
  background: #fff; border-bottom: 1px solid var(--bs-gray-200);
  position: relative;
}

.main-navigation-menu {
  display: flex; align-items: center; gap: 0;
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-height);
}

.main-navigation-link {
  display: flex; align-items: center; gap: 4px;
  padding: 16px 20px; font-size: 0.9rem; font-weight: 600;
  color: var(--bs-gray-800); cursor: pointer; border-bottom: 3px solid transparent;
  transition: all var(--transition-speed); white-space: nowrap;
  font-family: var(--font-family); background: none; border-top: none; border-left: none; border-right: none;
}
.main-navigation-link:hover,
.main-navigation-link.active {
  color: var(--bs-primary); border-bottom-color: var(--bs-primary);
}

/* --- Mega Menu Flyout --- */
.mega-menu-flyout {
  display: none; position: absolute; top: 100%; left: 0; width: 100%;
  background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  z-index: 1010; border-top: 1px solid var(--bs-gray-200);
}
.mega-menu-flyout.active { display: block; }

.mega-menu-inner {
  max-width: 1320px; margin: 0 auto; padding: 32px 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.mega-menu-column h4 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  color: var(--bs-primary); margin-bottom: 12px; letter-spacing: 0.5px;
}
.mega-menu-column h4 a { color: var(--bs-primary); }
.mega-menu-column h4 a:hover { color: var(--bs-secondary); }

.mega-menu-column ul li { margin-bottom: 4px; }
.mega-menu-column ul li a {
  display: block; padding: 6px 0; font-size: 0.85rem;
  color: var(--bs-gray-700); transition: color var(--transition-speed);
}
.mega-menu-column ul li a:hover { color: var(--bs-primary); padding-left: 4px; }

.mega-menu-sub { margin-top: 12px; }
.mega-menu-sub h5 {
  font-size: 0.78rem; font-weight: 600; color: var(--bs-gray-600);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.3px;
}
.mega-menu-sub ul { margin-bottom: 10px; }
.mega-menu-sub ul li a { font-size: 0.8rem; padding: 3px 0; }

.mega-menu-cta {
  grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--bs-gray-200);
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   SERVICE & DOWNLOAD BAR
   ============================================================ */
.service-bar {
  background: var(--bs-gray-100); padding: 16px 0;
}
.service-bar .container {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-bar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #fff; border-radius: 8px;
  transition: box-shadow var(--transition-speed);
}
.service-bar-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.service-bar-item svg { width: 28px; height: 28px; color: var(--bs-primary); flex-shrink: 0; }
.service-bar-item-content h4 { font-size: 0.9rem; font-weight: 600; color: var(--bs-gray-900); }
.service-bar-item-content p { font-size: 0.8rem; color: var(--bs-gray-600); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--bs-gray-100); padding: 10px 0; font-size: 0.8rem;
}
.breadcrumb-bar .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-bar a { color: var(--bs-gray-600); }
.breadcrumb-bar a:hover { color: var(--bs-primary); }
.breadcrumb-bar span { color: var(--bs-gray-800); }
.breadcrumb-bar .sep { color: var(--bs-gray-400); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative; min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #0d2b4a 100%);
  color: #fff; overflow: hidden;
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  min-width: 100%; min-height: 100%;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(25,60,105,0.5) 0%, rgba(13,43,74,0.6) 100%);
}

.hero-content {
  position: relative; z-index: 3; max-width: 700px; padding: 80px 0;
}
.hero-roofline {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px;
  font-weight: 600; color: var(--bs-secondary); margin-bottom: 16px;
}
.hero-title {
  font-size: 3rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.hero-text {
  font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; line-height: 1.7;
  max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: absolute; right: 0; bottom: 0; width: 50%; height: 100%;
  background-size: cover; background-position: center right;
  opacity: 0.3; mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 100%);
}

/* --- Page Hero (smaller, for inner pages) --- */
.page-hero {
  background: var(--bs-primary); color: #fff; padding: 56px 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 680px; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 72px 0; }
.section-gray { background: var(--bs-gray-100); }
.section-primary { background: var(--bs-primary); color: #fff; }

.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-header h2 {
  font-size: 2rem; font-weight: 800; color: var(--bs-gray-900);
  margin-bottom: 12px;
}
.section-primary .section-header h2 { color: #fff; }
.section-header p {
  font-size: 1.05rem; color: var(--bs-gray-600); max-width: 640px; margin: 0 auto;
}
.section-primary .section-header p { color: rgba(255,255,255,0.8); }
.section-eyebrow {
  margin-bottom: 4px;
  color: var(--bs-gray-900);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ============================================================
   PRODUCT FINDER / TABS
   ============================================================ */
.product-finder-tabs { display: flex; justify-content: center; gap: 4px; margin-bottom: 40px; flex-wrap: wrap; }
.product-finder-tab {
  padding: 14px 28px; font-size: 0.95rem; font-weight: 600;
  border: 2px solid transparent; background: transparent;
  color: var(--bs-gray-600); cursor: pointer; border-radius: 50px;
  transition: all var(--transition-speed); font-family: var(--font-family);
}
.product-finder-tab:hover { color: var(--bs-primary); background: rgba(25,60,105,0.05); }
.product-finder-tab.active {
  background: var(--bs-primary); color: #fff; border-color: var(--bs-primary);
}

.product-finder-content { display: none; }
.product-finder-content.active { display: block; }

/* ============================================================
   INDUSTRY/APPLICATION CARDS GRID
   ============================================================ */
.app-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.app-card {
  position: relative; border-radius: 12px; overflow: hidden;
  background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition-speed); cursor: pointer;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
}
.app-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.app-card-image {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.4s;
}
.app-card:hover .app-card-image { transform: scale(1.05); }
.app-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}
.app-card-label {
  position: relative; z-index: 2; padding: 20px;
  color: #fff; font-size: 1rem; font-weight: 700;
}

/* ============================================================
   FEATURE CARD GRID
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition-speed);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.feature-card-image {
  width: 100%; height: 200px; background-size: cover; background-position: center;
  background-color: var(--bs-gray-200);
}
.feature-card-body { padding: 24px; }
.feature-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--bs-gray-900); }
.feature-card-body p { font-size: 0.9rem; color: var(--bs-gray-600); margin-bottom: 16px; line-height: 1.6; }
.feature-card-body .btn { margin-top: auto; }

/* ============================================================
   PRODUCT FAMILIES SECTION
   ============================================================ */
.product-families {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-family-card {
  text-align: center; padding: 32px 20px; background: #fff;
  border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition-speed);
}
.product-family-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.product-family-card .icon-circle {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(25,60,105,0.08); display: flex; align-items: center; justify-content: center;
}
.product-family-card .icon-circle svg { width: 36px; height: 36px; color: var(--bs-primary); }
.product-family-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.product-family-card p { font-size: 0.85rem; color: var(--bs-gray-600); margin-bottom: 16px; }

/* ============================================================
   REFERENCES / TESTIMONIALS
   ============================================================ */
.references-scroll {
  display: flex; gap: 24px; overflow-x: auto; padding: 16px 0;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.references-scroll::-webkit-scrollbar { height: 6px; }
.references-scroll::-webkit-scrollbar-thumb { background: var(--bs-gray-300); border-radius: 3px; }

.reference-card {
  flex: 0 0 340px; scroll-snap-align: start;
  background: #fff; border-radius: 12px; padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
}
.reference-card img { max-height: 40px; width: auto; object-fit: contain; }
.reference-card blockquote {
  font-size: 0.95rem; font-style: italic; color: var(--bs-gray-700);
  margin-bottom: 16px; line-height: 1.7;
  border-left: 3px solid var(--bs-secondary); padding-left: 16px;
  flex: 1;
}
.reference-card .ref-author { font-weight: 700; font-size: 0.9rem; color: var(--bs-gray-900); }
.reference-card .ref-company { font-size: 0.8rem; color: var(--bs-gray-600); }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.news-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition-speed);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.news-card-image {
  width: 100%; height: 180px; background-size: cover; background-position: center;
  background-color: var(--bs-gray-200);
}
.news-card-body { padding: 20px; }
.news-card-date {
  font-size: 0.78rem; color: var(--bs-gray-600); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;
}
.news-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.news-card-body p { font-size: 0.85rem; color: var(--bs-gray-600); margin-bottom: 12px; }
.news-card-body .read-more { font-size: 0.85rem; font-weight: 600; color: var(--bs-primary); }
.news-card-body .read-more:hover { color: var(--bs-secondary); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--bs-secondary) 0%, #007bb3 100%);
  color: #fff; padding: 56px 0; text-align: center;
}
.cta-section h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; opacity: 0.9; margin-bottom: 24px; }

/* ============================================================
   FILTER / SIDEBAR (for product listing pages)
   ============================================================ */
.listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }

.filter-sidebar { position: sticky; top: 150px; align-self: start; }

.filter-group {
  border-bottom: 1px solid var(--bs-gray-200); padding: 16px 0;
}
.filter-group-header {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none; cursor: pointer;
  font-weight: 700; font-size: 0.9rem; padding: 0; font-family: var(--font-family);
  color: var(--bs-gray-900);
}
.filter-group-header svg { width: 16px; height: 16px; transition: transform 0.2s; }
.filter-group-header.collapsed svg { transform: rotate(-90deg); }

.filter-group-body { padding-top: 12px; }
.filter-group-body.collapsed { display: none; }

.filter-checkbox {
  display: flex; align-items: center; gap: 8px; padding: 4px 0;
  font-size: 0.85rem; color: var(--bs-gray-700); cursor: pointer;
}
.filter-checkbox input[type="checkbox"] { accent-color: var(--bs-primary); }

.filter-range { display: flex; gap: 8px; align-items: center; }
.filter-range input {
  width: 80px; padding: 6px 10px; border: 1px solid var(--bs-gray-300);
  border-radius: 6px; font-size: 0.85rem; font-family: var(--font-family);
}

/* --- Product Grid --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }

.product-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid var(--bs-gray-200);
  transition: all var(--transition-speed);
}
.product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); border-color: var(--bs-secondary); }
.product-card-image {
  width: 100%; height: 200px; background-size: contain; background-position: center;
  background-repeat: no-repeat; background-color: #fff;
}
.product-card-body { padding: 16px; }
.product-card-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.product-card-body .series-name { font-size: 0.8rem; color: var(--bs-secondary); font-weight: 600; }
.product-card-body .specs {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0;
  font-size: 0.78rem; color: var(--bs-gray-600);
}
.product-card-body .specs span { background: var(--bs-gray-100); padding: 3px 8px; border-radius: 4px; }

/* ============================================================
   SERIES DETAIL CARDS
   ============================================================ */
.series-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }

.series-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); display: flex;
  transition: all var(--transition-speed);
}
.series-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.series-card-image {
  width: 160px; flex-shrink: 0; background-size: contain;
  background-position: center; background-repeat: no-repeat;
  background-color: var(--bs-gray-100);
}
.series-card-body { padding: 20px; flex: 1; }
.series-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.series-card-body .series-desc { font-size: 0.85rem; color: var(--bs-gray-600); margin-bottom: 12px; }
.series-card-body .specs { font-size: 0.8rem; color: var(--bs-gray-600); margin-bottom: 12px; }
.series-card-body .specs span { display: inline-block; background: var(--bs-gray-100); padding: 3px 8px; border-radius: 4px; margin: 2px 4px 2px 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { font-size: 1rem; color: var(--bs-gray-600); margin-bottom: 16px; line-height: 1.7; }
.about-image {
  border-radius: 12px; overflow: hidden; background: var(--bs-gray-200);
  aspect-ratio: 4/3; background-size: cover; background-position: center;
}

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--bs-primary); }
.stat-label { font-size: 0.9rem; color: var(--bs-gray-600); }

/* Locations grid */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.location-card {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid var(--bs-gray-200);
}
.location-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.location-card .region { font-size: 0.8rem; color: var(--bs-secondary); font-weight: 600; margin-bottom: 8px; }
.location-card p { font-size: 0.85rem; color: var(--bs-gray-600); margin-bottom: 4px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { font-size: 0.95rem; color: var(--bs-gray-600); margin-bottom: 8px; }
.contact-info .info-block { margin-bottom: 20px; }
.contact-info .info-block h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: var(--bs-primary); margin-bottom: 4px; }

.contact-form { background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--bs-gray-800); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--bs-gray-300);
  border-radius: 8px; font-size: 0.9rem; font-family: var(--font-family);
  transition: border-color var(--transition-speed);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--bs-secondary);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #0d2b4a 100%);
  color: #fff; padding: 56px 0;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.newsletter-inner p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border: none; border-radius: 50px;
  font-size: 0.9rem; font-family: var(--font-family);
}
.newsletter-form button {
  padding: 14px 28px; background: var(--bs-secondary); color: #fff;
  border: none; border-radius: 50px; font-weight: 700; cursor: pointer;
  font-family: var(--font-family); font-size: 0.95rem;
  transition: background var(--transition-speed);
}
.newsletter-form button:hover { background: #007bb3; }

.newsletter-disclaimer {
  font-size: 0.75rem; opacity: 0.7; margin-top: 16px;
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement {
  text-align: center; padding: 64px 0;
}
.brand-statement .tagline {
  font-size: 2rem; font-weight: 800; color: var(--bs-primary); margin-bottom: 32px;
}
.brand-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; text-align: left; max-width: 900px; margin: 0 auto; }
.brand-columns h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.brand-columns p { font-size: 0.95rem; color: var(--bs-gray-600); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: var(--bs-primary); color: #fff; padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-col h4 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 16px; color: rgba(255,255,255,0.7);
}
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.75); transition: color var(--transition-speed);
}
.footer-col ul li a:hover { color: #fff; }

.footer-company-info { font-size: 0.85rem; opacity: 0.8; line-height: 1.7; }
.footer-company-info p { margin-bottom: 4px; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  transition: background var(--transition-speed);
}
.footer-social a:hover { background: var(--bs-secondary); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem; opacity: 0.7;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.7); }
.footer-bottom-links a:hover { color: #fff; }

.footer-back-to-top {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: rgba(255,255,255,0.1);
  border-radius: 50px; color: #fff; font-size: 0.8rem;
  cursor: pointer; transition: background var(--transition-speed); border: none;
  font-family: var(--font-family);
}
.footer-back-to-top:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   DOWNLOAD CENTER
   ============================================================ */
.download-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

.download-card {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid var(--bs-gray-200);
  display: flex; gap: 16px; align-items: flex-start;
  transition: all var(--transition-speed);
}
.download-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.download-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(25,60,105,0.08); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.download-card-icon svg { width: 24px; height: 24px; color: var(--bs-primary); }
.download-card-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.download-card-content p { font-size: 0.8rem; color: var(--bs-gray-600); }

/* ============================================================
   CONTENT PAGE (generic inner page)
   ============================================================ */
.content-section { padding: 48px 0; }
.content-section h2 { font-size: 1.6rem; font-weight: 800; margin: 32px 0 16px; }
.content-section h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 12px; }
.content-section p { font-size: 0.95rem; color: var(--bs-gray-700); margin-bottom: 16px; line-height: 1.7; }
.content-section ul { margin: 12px 0 20px 24px; list-style: disc; }
.content-section ul li { font-size: 0.9rem; color: var(--bs-gray-700); margin-bottom: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-families { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .header-search-col { display: none; }
  .main-navigation-menu { overflow-x: auto; }
  .main-navigation-link { padding: 14px 14px; font-size: 0.82rem; }
  .mega-menu-inner { grid-template-columns: 1fr 1fr; }
  .listing-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.2rem; }
  .news-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .brand-columns { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .service-bar .container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-actions-btn span:not(.sr-only) { display: none; }
  .header-row-inner { height: 64px; }
  .hero-section { min-height: 420px; }
  .hero-title { font-size: 1.8rem; }
  .hero-content { padding: 48px 0; }
  .section { padding: 48px 0; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .card-grid-4 { grid-template-columns: 1fr; }
  .product-families { grid-template-columns: 1fr; }
  .mega-menu-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* ============================================================
   HOME PAGE - closer to current TENTE homepage
   ============================================================ */
.home-page .header-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.home-page .header-top-bar {
  background: var(--bs-secondary);
  padding: 5px 0;
}

.home-page .header-top-bar .container {
  justify-content: center;
}

.home-page .top-bar-promotion-text {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-page .header-row {
  border-bottom: 1px solid rgba(255,255,255,0.72);
}

.home-page .header-row-inner {
  position: relative;
  height: 74px;
}

.home-page .header-logo-main-link {
  position: relative;
  width: 88px;
  height: 58px;
}

.home-page .header-logo-main-link img {
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: contain;
  filter: invert(1);
}

.home-page .header-search-form {
  background: rgba(255,255,255,0.22);
  border: 0;
}

.home-page .header-search-form input {
  color: #fff;
}

.home-page .header-search-form input::placeholder {
  color: rgba(255,255,255,0.95);
}

.home-page .header-search-form button,
.home-page .header-actions-btn {
  color: #fff;
}

.home-page .header-actions-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.home-page .header-offer-badge {
  display: none;
}

.home-page .main-navigation {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.72);
}

.home-page .main-navigation-menu {
  width: 100%;
}

.home-page .main-navigation-link {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .main-navigation-link:hover,
.home-page .main-navigation-link.active {
  color: #fff;
  border-bottom-color: #fff;
}

.main-navigation-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding: 10px 24px;
  color: var(--bs-gray-900);
  background: #fff;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.main-navigation-service-link:hover {
  color: var(--bs-primary);
  background: #fff;
}

.home-page .mega-menu-flyout {
  color: var(--bs-gray-900);
}

.home-page .service-bar,
.home-product-finder {
  display: none;
}

.home-page .hero-section {
  min-height: 100vh;
  align-items: center;
  background: #9c9c9c;
}

.home-page .hero-section::before {
  background: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.08));
}

.home-page .hero-video {
  opacity: 0.95;
}

.home-page .hero-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 190px 0 96px;
  text-align: center;
}

.home-page .hero-roofline {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-page .hero-title {
  margin-bottom: 40px;
  color: #fff;
  font-size: 3.35rem;
  line-height: 1.15;
}

.home-page .hero-buttons {
  justify-content: center;
}

.home-page .hero-buttons .btn-primary {
  min-width: 154px;
  padding: 14px 46px 14px 22px;
  color: #000;
  background: #fff;
  border-color: #fff;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}

.home-page .hero-buttons .btn-primary::after {
  content: ">";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 1.35rem;
  font-weight: 500;
}

.home-page .hero-buttons .btn-primary:hover {
  color: #000;
  background: #f4f4f4;
  border-color: #f4f4f4;
}

.home-page main > .section:not(.home-product-finder):first-of-type {
  padding-top: 64px;
}

.home-page .brand-statement .tagline {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 992px) {
  .home-page .header-search-col {
    display: none;
  }

  .home-page .main-navigation-menu {
    overflow-x: visible;
  }
}

@media (max-width: 768px) {
  .home-page .header-main {
    position: absolute;
  }

  .home-page .header-top-bar {
    padding: 7px 0;
  }

  .home-page .top-bar-promotion-text {
    font-size: 0.82rem;
  }

  .home-page .header-row {
    background: rgba(0,0,0,0.12);
  }

  .home-page .header-row-inner {
    height: 58px;
    justify-content: center;
    padding: 0 16px;
  }

  .home-page .header-logo-col {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .home-page .header-logo-main-link {
    width: 64px;
    height: 48px;
  }

  .home-page .header-actions-col {
    width: 100%;
    justify-content: flex-end;
  }

  .home-page .header-mobile-toggle {
    position: absolute;
    left: 8px;
    display: inline-flex;
    color: #fff;
  }

  .home-page .lang-dropdown,
  .home-page .header-actions-col > a.header-actions-btn:not(.header-offer-btn) {
    display: none;
  }

  .home-page .main-navigation {
    display: none;
  }

  .home-page .hero-section {
    min-height: 780px;
  }

  .home-page .hero-content {
    padding: 152px 0 72px;
  }

  .home-page .hero-roofline {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .home-page .hero-title {
    font-size: 1.95rem;
    line-height: 1.15;
    margin-bottom: 34px;
  }

  .home-page .hero-buttons .btn-primary {
    min-width: 146px;
    padding: 13px 44px 13px 22px;
  }
}
