/* ==========================================================================
   TEK Theme — Main Stylesheet (Classic PHP version)
   Brand: Professional Gate Hardware
   Palette: navy + amber + cream (din logo TEK)
   ========================================================================== */

:root {
  --tek-navy: #1A2738;
  --tek-navy-deep: #11192A;
  --tek-navy-soft: #243349;
  --tek-amber: #E8AB17;
  --tek-amber-bright: #F5BA22;
  --tek-cream: #EFE7D2;
  --tek-cream-soft: #F7F1E0;
  --tek-white: #ffffff;
  --tek-gray-50: #FAFAFA;
  --tek-gray-100: #F2F2F2;
  --tek-gray-200: #E5E5E5;
  --tek-gray-300: #D4D4D4;
  --tek-gray-500: #737373;
  --tek-gray-700: #404040;
  --tek-gray-900: #171717;
  --tek-shadow: 0 10px 40px rgba(26, 39, 56, 0.08);
  --tek-shadow-hover: 0 20px 60px rgba(26, 39, 56, 0.18);
  --tek-radius: 4px;
  --tek-radius-lg: 12px;
  --tek-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --tek-container: 1320px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--tek-gray-900);
  background: var(--tek-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--tek-navy); text-decoration: none; transition: color var(--tek-transition); }
a:hover { color: var(--tek-amber); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--tek-navy);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }

/* Container */
.tek-container {
  width: 100%;
  max-width: var(--tek-container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .tek-container { padding: 0 40px; } }

/* Buttons */
.tek-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--tek-radius);
  transition: all var(--tek-transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.tek-btn-primary { background: var(--tek-amber); color: var(--tek-navy); }
.tek-btn-primary:hover { background: var(--tek-amber-bright); color: var(--tek-navy); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,171,23,0.35); }
.tek-btn-secondary { background: var(--tek-navy); color: var(--tek-cream); }
.tek-btn-secondary:hover { background: var(--tek-navy-deep); color: var(--tek-amber); transform: translateY(-2px); }
.tek-btn-outline { background: transparent; color: var(--tek-navy); border: 2px solid var(--tek-navy); }
.tek-btn-outline:hover { background: var(--tek-navy); color: var(--tek-cream); }
.tek-btn-outline-light { background: transparent; color: var(--tek-cream); border: 2px solid var(--tek-cream); }
.tek-btn-outline-light:hover { background: var(--tek-cream); color: var(--tek-navy); }
.tek-btn .arrow { transition: transform var(--tek-transition); }
.tek-btn:hover .arrow { transform: translateX(4px); }

/* Header */
.tek-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--tek-navy);
  border-bottom: none;
}
.tek-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; padding: 14px 0; }
.tek-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.tek-logo img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 0;
}
@media (min-width: 768px) {
  .tek-logo img { height: 68px; }
  .tek-header-inner { min-height: 104px; }
}
.tek-logo-text { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; letter-spacing: 0.08em; color: var(--tek-cream); }
.tek-logo-text span { color: var(--tek-amber); }
.tek-nav { display: none; align-items: center; gap: 8px; }
@media (min-width: 992px) { .tek-nav { display: flex; } }
.tek-nav a {
  display: inline-block; padding: 10px 18px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--tek-cream); text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: var(--tek-radius); position: relative;
}
.tek-nav a::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 4px; height: 2px;
  background: var(--tek-amber); transform: scaleX(0); transform-origin: left;
  transition: transform var(--tek-transition);
}
.tek-nav a:hover { color: var(--tek-amber); }
.tek-nav a:hover::after, .tek-nav .current-menu-item > a::after, .tek-nav .current_page_item > a::after { transform: scaleX(1); }

/* ─── MEGA MENU (Produse) ─────────────────────────────────────────────── */
.tek-nav-item-mega { position: relative; display: inline-block; }
.tek-nav-mega-trigger { display: inline-flex !important; align-items: center; }
.tek-mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-12px) scale(0.97);
  z-index: 200;
  width: min(880px, 92vw);
  background: var(--tek-white);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(17, 25, 42, 0.35), 0 0 0 1px rgba(17, 25, 42, 0.04);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.tek-mega-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--tek-white);
  box-shadow: -1px -1px 0 0 rgba(17, 25, 42, 0.04);
}
.tek-nav-item-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  display: block;
}
.tek-nav-item-mega:hover .tek-mega-panel,
.tek-nav-item-mega:focus-within .tek-mega-panel,
.tek-nav-item-mega.is-open .tek-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.tek-mega-panel-inner { padding: 28px 32px 24px; }
.tek-mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-mega-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tek-amber);
  margin-bottom: 4px;
}
.tek-mega-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tek-navy);
  margin: 0;
}
.tek-mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--tek-navy);
  color: var(--tek-cream);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.tek-mega-all svg {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  transition: transform 0.25s;
}
.tek-mega-all:hover {
  background: var(--tek-amber);
  color: var(--tek-navy);
  transform: translateX(2px);
}
.tek-mega-all:hover svg { transform: translateX(3px); }
.tek-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 18px;
}
.tek-mega-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.tek-mega-card:hover { background: var(--tek-cream-soft); }
.tek-mega-card-content { flex: 1; min-width: 0; }
.tek-mega-card-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--tek-navy);
  margin-bottom: 2px;
  line-height: 1.3;
}
.tek-mega-card:hover .tek-mega-card-title { color: var(--tek-amber); }
.tek-mega-card-desc {
  font-size: 0.78rem;
  color: var(--tek-gray-500);
  line-height: 1.4;
}
.tek-mega-card-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tek-gray-500);
  padding: 4px 10px;
  background: var(--tek-cream-soft);
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}
.tek-mega-card:hover .tek-mega-card-count {
  background: var(--tek-amber);
  color: var(--tek-navy);
}
.tek-mega-card-count svg { opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.tek-mega-card:hover .tek-mega-card-count svg { opacity: 1; transform: translateX(2px); }

/* Mobile sub-list (Produse expandable) */
.tek-mobile-has-sub { width: 100%; }
.tek-mobile-sub-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: var(--tek-cream);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  cursor: pointer;
  border-radius: var(--tek-radius);
  transition: all 0.2s;
}
.tek-mobile-sub-trigger:hover {
  background: rgba(239, 231, 210, 0.08);
  color: var(--tek-amber);
}
.tek-mobile-sub-trigger svg { transition: transform 0.25s; }
.tek-mobile-has-sub.is-open .tek-mobile-sub-trigger svg { transform: rotate(180deg); color: var(--tek-amber); }
.tek-mobile-sublist {
  display: none !important;
  list-style: none;
  margin: 4px 0 8px;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--tek-amber);
  overflow: hidden;
}
.tek-mobile-has-sub.is-open .tek-mobile-sublist {
  display: block !important;
  animation: tek-slide-down 0.3s ease;
}
@keyframes tek-slide-down {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 600px; }
}
.tek-mobile-sublist li { margin: 0; }
.tek-mobile-sublist a {
  display: block;
  padding: 9px 14px !important;
  font-size: 0.88rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(239, 231, 210, 0.85) !important;
  border-radius: 4px;
}
.tek-mobile-sublist a:hover {
  background: rgba(232, 171, 23, 0.1) !important;
  color: var(--tek-amber) !important;
}

@media (max-width: 1100px) {
  .tek-mega-grid { grid-template-columns: 1fr; }
  .tek-mega-panel { width: min(420px, 92vw); }
}
.tek-header-cta { display: none; }
@media (min-width: 768px) { .tek-header-cta { display: inline-flex; } }
.tek-menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(239,231,210,0.3);
  border-radius: var(--tek-radius); color: var(--tek-cream);
}
@media (min-width: 992px) { .tek-menu-toggle { display: none; } }
.tek-menu-toggle span, .tek-menu-toggle span::before, .tek-menu-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--tek-cream); position: relative;
  transition: all 0.3s;
}
.tek-menu-toggle span::before, .tek-menu-toggle span::after { content: ""; position: absolute; left: 0; }
.tek-menu-toggle span::before { top: -7px; }
.tek-menu-toggle span::after { top: 7px; }
.tek-mobile-nav { display: none; padding: 24px 0; border-top: 1px solid rgba(239,231,210,0.1); }
.tek-mobile-nav.is-open { display: block; }
.tek-mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.tek-mobile-nav a { display: block; padding: 14px 18px; color: var(--tek-cream); font-size: 1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; border-radius: var(--tek-radius); }
.tek-mobile-nav a:hover { background: rgba(239,231,210,0.08); color: var(--tek-amber); }
.tek-mobile-cta-link {
  background: var(--tek-amber) !important;
  color: var(--tek-navy) !important;
  font-weight: 700 !important;
  text-align: center;
  margin-top: 12px !important;
  transition: background 0.2s ease;
}
.tek-mobile-cta-link:hover {
  background: var(--tek-amber-bright) !important;
  color: var(--tek-navy) !important;
}

/* Language Switcher (dropdown ultra-modern în header) */
.tek-lang-switcher {
  position: relative;
}
.tek-lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(239, 231, 210, 0.25);
  border-radius: 100px;
  color: var(--tek-cream);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 44px;
  white-space: nowrap;
}
.tek-lang-current:hover {
  background: rgba(232, 171, 23, 0.15);
  border-color: var(--tek-amber);
}
.tek-lang-current svg {
  opacity: 0.6;
  transition: transform 0.3s, opacity 0.3s;
}
.tek-lang-switcher.is-open .tek-lang-current svg {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--tek-amber);
}
.tek-lang-flag {
  font-size: 1.15rem;
  line-height: 1;
  display: inline-block;
  /* Fix steaguri pe Windows (Win nu randa flag-uri color emoji nativ) */
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}
.tek-lang-code {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.tek-lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 200;
  min-width: 240px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--tek-white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(17, 25, 42, 0.35), 0 0 0 1px rgba(17, 25, 42, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tek-lang-switcher.is-open .tek-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.tek-lang-dropdown li { margin: 0; }
.tek-lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--tek-navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.tek-lang-dropdown button:hover {
  background: var(--tek-cream-soft);
}
.tek-lang-dropdown button.is-active {
  background: var(--tek-navy);
  color: var(--tek-cream);
}
.tek-lang-dropdown button.is-active .tek-lang-abbr {
  color: var(--tek-amber);
}
.tek-lang-dropdown .tek-lang-flag {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 24px;
}
.tek-lang-dropdown .tek-lang-name {
  flex: 1;
}
.tek-lang-dropdown .tek-lang-abbr {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--tek-gray-500);
  background: var(--tek-cream-soft);
  padding: 3px 8px;
  border-radius: 100px;
  transition: all 0.18s;
}
.tek-lang-dropdown button:hover .tek-lang-abbr {
  background: var(--tek-white);
  color: var(--tek-navy);
}
.tek-lang-dropdown button.is-active:hover {
  background: var(--tek-navy-deep);
}
.tek-lang-dropdown button.is-active:hover .tek-lang-abbr {
  background: var(--tek-amber);
  color: var(--tek-navy);
}

@media (max-width: 600px) {
  .tek-lang-current { padding: 6px 10px; font-size: 0.78rem; }
  .tek-lang-code { display: none; }  /* doar steag pe mobile */
  .tek-lang-dropdown { right: -10px; min-width: 220px; }
}

/* Search Trigger (icon în header) */
.tek-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(239,231,210,0.25);
  border-radius: 50%;
  color: var(--tek-cream);
  cursor: pointer;
  transition: all 0.25s ease;
}
.tek-search-trigger:hover {
  background: rgba(232,171,23,0.15);
  border-color: var(--tek-amber);
  color: var(--tek-amber);
}

/* Search Overlay Full-screen */
.tek-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17, 25, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tek-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.tek-search-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid rgba(239,231,210,0.2);
  border-radius: 50%;
  color: var(--tek-cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.tek-search-close:hover {
  background: var(--tek-amber);
  border-color: var(--tek-amber);
  color: var(--tek-navy);
  transform: rotate(90deg);
}
.tek-search-form {
  width: 100%;
  max-width: 900px;
  padding: 0 32px;
}
.tek-search-form-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 2px solid var(--tek-cream);
  transition: border-color 0.3s;
}
.tek-search-form-inner:focus-within {
  border-bottom-color: var(--tek-amber);
}
.tek-search-icon {
  display: flex;
  color: rgba(239, 231, 210, 0.6);
  flex-shrink: 0;
}
.tek-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--tek-cream);
  padding: 24px 0;
  width: 100%;
  caret-color: var(--tek-amber);
}
.tek-search-input::placeholder {
  color: rgba(239, 231, 210, 0.35);
  font-weight: 400;
}
.tek-search-input::-webkit-search-cancel-button { display: none; }
.tek-search-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--tek-amber);
  color: var(--tek-navy);
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}
.tek-search-submit:hover {
  background: var(--tek-amber-bright);
  transform: translateY(-2px);
}
.tek-search-hint {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(239, 231, 210, 0.5);
  letter-spacing: 0.02em;
}
.tek-search-hint span {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: rgba(239, 231, 210, 0.4);
  margin-right: 4px;
}
.tek-search-hint a {
  padding: 6px 14px;
  background: rgba(239, 231, 210, 0.06);
  border: 1px solid rgba(239, 231, 210, 0.12);
  border-radius: 100px;
  color: rgba(239, 231, 210, 0.85);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.85rem;
}
.tek-search-hint a:hover {
  background: var(--tek-amber);
  border-color: var(--tek-amber);
  color: var(--tek-navy);
}

@media (max-width: 600px) {
  .tek-search-close { top: 16px; right: 16px; width: 44px; height: 44px; }
  .tek-search-form { padding: 0 16px; }
  .tek-search-submit { padding: 12px 18px; font-size: 0.78rem; }
}

/* Hero */
.tek-hero {
  position: relative;
  background: linear-gradient(135deg, var(--tek-navy-deep) 0%, var(--tek-navy) 100%);
  color: var(--tek-cream);
  overflow: hidden;
  padding: 72px 0 80px;
}
.tek-hero::before {
  content: ""; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background-image: radial-gradient(circle at 70% 50%, rgba(232,171,23,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.tek-hero::after {
  content: "TEK"; position: absolute; right: -50px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(15rem, 30vw, 28rem); color: rgba(232,171,23,0.04);
  line-height: 0.8; letter-spacing: -0.05em; pointer-events: none; user-select: none;
}
.tek-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.tek-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem) !important; }
.tek-hero-eyebrow {
  display: inline-block; padding: 8px 16px;
  background: rgba(232,171,23,0.15); color: var(--tek-amber);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  border-radius: 100px; margin-bottom: 28px;
}
.tek-hero h1 { color: var(--tek-cream); margin-bottom: 18px; font-weight: 800; }
.tek-hero h1 .accent { color: var(--tek-amber); }
.tek-hero-lead { font-size: clamp(1rem, 1.2vw, 1.15rem); color: rgba(239,231,210,0.85); max-width: 620px; margin-bottom: 24px; line-height: 1.55; }
.tek-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.tek-hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(239,231,210,0.15); }
.tek-stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--tek-amber); line-height: 1; margin-bottom: 6px; }
.tek-stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(239,231,210,0.7); }

/* Sections */
.tek-section { padding: 64px 0; }
.tek-section-dark { background: var(--tek-navy); color: var(--tek-cream); }
.tek-section-dark h2 { color: var(--tek-cream); }
.tek-section-cream { background: var(--tek-cream-soft); }
.tek-section-header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.tek-section-eyebrow { display: inline-block; font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tek-amber); margin-bottom: 10px; }
.tek-section-header h2 { margin-bottom: 12px; }
.tek-section-header p { font-size: 1rem; color: var(--tek-gray-500); }
.tek-section-dark .tek-section-header p { color: rgba(239,231,210,0.75); }

/* Categories grid */
.tek-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.tek-cat-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 240px; padding: 22px 24px;
  background: var(--tek-navy); color: var(--tek-cream);
  border-radius: var(--tek-radius); overflow: hidden;
  text-decoration: none;
  transition: transform var(--tek-transition), box-shadow var(--tek-transition);
  isolation: isolate;
}
.tek-cat-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(17,25,42,0.95) 100%); z-index: -1; }
.tek-cat-card-icon { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; background: rgba(232,171,23,0.2); border: 1px solid rgba(232,171,23,0.4); border-radius: var(--tek-radius); display: flex; align-items: center; justify-content: center; color: var(--tek-amber); }
.tek-cat-card-icon svg { width: 20px; height: 20px; }
.tek-cat-card h3 { color: var(--tek-cream); font-size: 1.25rem; margin-bottom: 4px; }
.tek-cat-card-count { display: inline-block; font-size: 0.78rem; color: var(--tek-amber); font-weight: 500; margin-bottom: 10px; letter-spacing: 0.05em; }
.tek-cat-card-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tek-cream); }
.tek-cat-card:hover { transform: translateY(-6px); box-shadow: var(--tek-shadow-hover); }
.tek-cat-card:hover .tek-cat-card-icon { background: var(--tek-amber); color: var(--tek-navy); }
.tek-cat-card:hover .tek-cat-card-arrow { color: var(--tek-amber); }

/* Tipuri Poartă - carduri mari proeminente */
.tek-tipuri-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .tek-tipuri-grid { grid-template-columns: repeat(3, 1fr); }
}
.tek-tip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 24px;
  background: var(--tek-white);
  border: 2px solid var(--tek-gray-200);
  border-radius: var(--tek-radius-lg);
  text-decoration: none;
  transition: all var(--tek-transition);
  min-height: 240px;
}
.tek-tip-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: var(--tek-amber);
  border-radius: var(--tek-radius-lg) var(--tek-radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tek-tip-card:hover {
  transform: translateY(-8px);
  border-color: var(--tek-navy);
  box-shadow: 0 25px 60px rgba(26, 39, 56, 0.18);
}
.tek-tip-card:hover::before { transform: scaleX(1); }
.tek-tip-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tek-cream-soft);
  color: var(--tek-navy);
  border-radius: 50%;
  margin-bottom: 14px;
  transition: all var(--tek-transition);
}
.tek-tip-icon svg { width: 28px; height: 28px; }
.tek-tip-card:hover .tek-tip-icon {
  background: var(--tek-amber);
  transform: rotate(-5deg) scale(1.05);
}
.tek-tip-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--tek-navy);
}
.tek-tip-count {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tek-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.tek-tip-card p {
  color: var(--tek-gray-500);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
}
.tek-tip-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tek-navy);
  padding-top: 16px;
  border-top: 2px solid var(--tek-gray-200);
  width: 100%;
  transition: color var(--tek-transition);
}
.tek-tip-card:hover .tek-tip-arrow { color: var(--tek-amber); }
.tek-tip-arrow .arrow { transition: transform var(--tek-transition); }
.tek-tip-card:hover .tek-tip-arrow .arrow { transform: translateX(6px); }

/* Features */
.tek-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.tek-feature { padding: 22px 24px; background: var(--tek-white); border-radius: var(--tek-radius); border: 1px solid var(--tek-gray-200); transition: all var(--tek-transition); }
.tek-feature:hover { transform: translateY(-4px); border-color: var(--tek-amber); box-shadow: var(--tek-shadow); }
.tek-feature-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--tek-navy); color: var(--tek-amber); border-radius: var(--tek-radius); margin-bottom: 12px; }
.tek-feature-icon svg { width: 20px; height: 20px; }
.tek-feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.tek-feature p { font-size: 0.9rem; color: var(--tek-gray-500); margin: 0; line-height: 1.5; }

/* Product cards */
.tek-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.tek-product-card { position: relative; background: var(--tek-white); border: 1px solid var(--tek-gray-200); border-radius: var(--tek-radius); overflow: hidden; transition: all var(--tek-transition); display: flex; flex-direction: column; }
.tek-product-card:hover { transform: translateY(-6px); box-shadow: var(--tek-shadow-hover); border-color: var(--tek-amber); }
.tek-product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden !important;
  display: block;
  isolation: isolate;
}
.tek-product-img-wrap img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: transform 0.6s ease;
}
.tek-product-card:hover .tek-product-img-wrap img { transform: scale(1.05); }
.tek-product-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: linear-gradient(135deg, var(--tek-navy-soft) 0%, var(--tek-navy) 100%); color: var(--tek-amber); font-family: var(--font-display); font-weight: 800; }
.tek-product-placeholder svg { width: 80px; height: 80px; opacity: 0.8; }
.tek-product-cod { position: absolute; top: 14px; left: 14px; padding: 6px 12px; background: var(--tek-navy); color: var(--tek-cream); font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; border-radius: 100px; }
.tek-product-content { padding: 24px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.tek-product-cat { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tek-amber); margin-bottom: 8px; }
.tek-product-card h3 { font-size: 1.05rem; line-height: 1.3; margin-bottom: 8px; }
.tek-product-card h3 a { color: var(--tek-navy); }
.tek-product-card h3 a:hover { color: var(--tek-amber); }
.tek-product-desc { font-size: 0.88rem; color: var(--tek-gray-500); margin-bottom: 16px; flex: 1; }
.tek-product-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tek-navy); }
.tek-product-link:hover { color: var(--tek-amber); }
.tek-product-link svg { transition: transform var(--tek-transition); }
.tek-product-card:hover .tek-product-link svg { transform: translateX(4px); }

/* CTA banner */
.tek-cta-banner { position: relative; padding: 56px 48px; background: var(--tek-navy); color: var(--tek-cream); border-radius: var(--tek-radius-lg); overflow: hidden; text-align: center; }
.tek-cta-banner::before { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 30%; background: var(--tek-amber); clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%); }
.tek-cta-banner h2 { color: var(--tek-cream); position: relative; z-index: 1; font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 10px; }
.tek-cta-banner p { position: relative; z-index: 1; font-size: 1rem; color: rgba(239,231,210,0.85); max-width: 600px; margin: 0 auto 20px; }
.tek-cta-banner .tek-btn { position: relative; z-index: 1; }

/* About split */
.tek-about-split { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 992px) { .tek-about-split { grid-template-columns: 1fr 1fr; } }
.tek-about-image { position: relative; aspect-ratio: 4 / 3; max-width: 460px; margin: 0 auto; border-radius: var(--tek-radius-lg); overflow: hidden; background: var(--tek-navy); }
.tek-about-image img { width: 100%; height: 100%; object-fit: cover; }
.tek-about-image::after { content: ""; position: absolute; bottom: -24px; right: -24px; width: 120px; height: 120px; background: var(--tek-amber); border-radius: var(--tek-radius-lg); z-index: -1; }
.tek-about-content h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.tek-about-content p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }
.tek-about-points { margin-top: 18px; }
.tek-about-points li { margin-bottom: 8px; font-size: 0.92rem; }
.tek-about-content h2 { margin-bottom: 14px; }
.tek-about-content p { color: var(--tek-gray-700); font-size: 1.05rem; line-height: 1.75; }
.tek-about-points { margin-top: 18px; list-style: none; padding: 0; }
.tek-about-points li { display: flex; align-items: start; gap: 12px; margin-bottom: 10px; font-size: 0.92rem; color: var(--tek-gray-700); line-height: 1.5; }
.tek-about-points li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 4px; background: var(--tek-amber); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat; }

/* Page header */
.tek-page-header { background: linear-gradient(135deg, var(--tek-navy-deep) 0%, var(--tek-navy) 100%); color: var(--tek-cream); padding: 100px 0 80px; position: relative; overflow: hidden; }
.tek-page-header::after { content: ""; position: absolute; bottom: 0; left: 50%; width: 80px; height: 4px; background: var(--tek-amber); transform: translateX(-50%); }
.tek-page-header h1 { color: var(--tek-cream); text-align: center; margin-bottom: 12px; }
.tek-breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(239,231,210,0.7); text-transform: uppercase; letter-spacing: 0.1em; }
.tek-breadcrumb a { color: rgba(239,231,210,0.9); }
.tek-breadcrumb a:hover { color: var(--tek-amber); }
.tek-breadcrumb-sep { color: var(--tek-amber); }

/* Single product */
.tek-single-produs { padding: 60px 0 100px; }
.tek-single-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
@media (min-width: 992px) { .tek-single-grid { grid-template-columns: 1.1fr 1fr; } }
.tek-single-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: var(--tek-radius-lg);
  overflow: hidden !important;
  border: 1px solid var(--tek-gray-200);
  display: block;
}
.tek-single-image img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  padding: 32px;
  display: block;
}
.tek-single-meta { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.tek-single-cod { display: inline-block; padding: 6px 14px; background: var(--tek-navy); color: var(--tek-cream); font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; border-radius: 100px; }
.tek-single-cat { display: inline-block; padding: 6px 14px; background: rgba(232,171,23,0.15); color: var(--tek-amber); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; border-radius: 100px; }
.tek-single-title { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 24px; }
.tek-single-content { color: var(--tek-gray-700); line-height: 1.75; }
.tek-single-tagline {
  font-size: 1.1rem;
  color: var(--tek-gray-500);
  line-height: 1.55;
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 3px solid var(--tek-amber);
}

/* Quick info mini (sub butoane) */
.tek-single-quickinfo {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--tek-cream-soft);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.tek-quickinfo-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tek-quickinfo-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tek-gray-500);
}
.tek-quickinfo-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tek-navy);
}
.tek-quickinfo-value a { color: var(--tek-navy); }
.tek-quickinfo-value a:hover { color: var(--tek-amber); }
@media (max-width: 480px) {
  .tek-single-quickinfo { grid-template-columns: 1fr; }
}

/* ─── DESCRIERE COMPLETĂ (chenar premium) ────────────────────────────── */
.tek-single-description {
  margin-top: 80px;
}
.tek-single-description-inner {
  position: relative;
  background: var(--tek-white);
  border: 1px solid var(--tek-gray-200);
  border-radius: 12px;
  padding: 48px 56px;
  box-shadow: 0 4px 30px rgba(17, 25, 42, 0.04);
}
.tek-single-description-inner::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--tek-amber), var(--tek-amber-bright));
  border-radius: 0 0 4px 4px;
}
@media (max-width: 768px) {
  .tek-single-description-inner { padding: 32px 24px; }
}
.tek-single-description-head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-single-description-head .tek-section-eyebrow { margin-bottom: 12px; }
.tek-single-description-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0;
  line-height: 1.2;
}
.tek-single-description-body {
  color: var(--tek-gray-700);
  font-size: 1.02rem;
  line-height: 1.75;
}
.tek-single-description-body p {
  margin: 0 0 18px;
}
.tek-single-description-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tek-navy);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--tek-amber);
  letter-spacing: -0.005em;
}
.tek-single-description-body h3:first-child { margin-top: 0; }
.tek-seo-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 768px) {
  .tek-seo-features { grid-template-columns: 1fr 1fr; gap: 4px 24px; }
}
.tek-seo-features li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 0.96rem;
  color: var(--tek-gray-700);
  line-height: 1.55;
}
.tek-seo-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--tek-amber);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/14px no-repeat;
}
.tek-seo-features li strong { color: var(--tek-navy); }

/* CTA în chenar */
.tek-single-description-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--tek-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.tek-single-description-cta strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--tek-navy);
  display: block;
  margin-bottom: 4px;
}
.tek-single-description-cta p {
  font-size: 0.9rem;
  color: var(--tek-gray-500);
  margin: 0;
}
@media (max-width: 600px) {
  .tek-single-description-cta { flex-direction: column; align-items: flex-start; }
}
.tek-single-specs { margin-top: 32px; padding: 28px; background: var(--tek-cream-soft); border-radius: var(--tek-radius); border-left: 4px solid var(--tek-amber); }
.tek-single-specs h3 { font-size: 1.2rem; margin-bottom: 16px; }
.tek-spec-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(26,39,56,0.1); font-size: 0.95rem; }
.tek-spec-row:last-child { border-bottom: none; }
.tek-spec-row dt { font-weight: 600; color: var(--tek-navy); }
.tek-single-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   VITRINA - Grila 10 categorii pe /produse/
   ========================================================================== */
.tek-vitrina {
  background: var(--tek-white);
  padding: 16px 0 80px;
}
.tek-vitrina-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 600px)  { .tek-vitrina-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 992px)  { .tek-vitrina-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1280px) { .tek-vitrina-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
@media (min-width: 1600px) { .tek-vitrina-grid { grid-template-columns: repeat(5, 1fr); } }

.tek-vitrina-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 32px 28px;
  background: var(--tek-white);
  border: 1px solid var(--tek-gray-200);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 240px;
  isolation: isolate;
}
.tek-vitrina-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--tek-navy-deep) 0%, var(--tek-navy) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.tek-vitrina-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--tek-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.tek-vitrina-card:hover {
  border-color: var(--tek-navy);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 39, 56, 0.18);
}
.tek-vitrina-card:hover::before { opacity: 1; }
.tek-vitrina-card:hover::after  { transform: scaleX(1); }
.tek-vitrina-card:hover .tek-vitrina-icon,
.tek-vitrina-card:hover .tek-vitrina-title,
.tek-vitrina-card:hover .tek-vitrina-count,
.tek-vitrina-card:hover .tek-vitrina-arrow {
  color: var(--tek-cream);
}
.tek-vitrina-card:hover .tek-vitrina-icon { color: var(--tek-amber); }
.tek-vitrina-card:hover .tek-vitrina-arrow svg { transform: translateX(6px); }

.tek-vitrina-icon {
  width: 56px;
  height: 56px;
  color: var(--tek-navy);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.tek-vitrina-icon svg {
  width: 100%; height: 100%;
}
.tek-vitrina-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--tek-navy);
  margin: 0 0 8px;
  transition: color 0.3s;
  flex: 1;
}
.tek-vitrina-count {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--tek-gray-500);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.tek-vitrina-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tek-navy);
  padding-top: 16px;
  border-top: 1px solid var(--tek-gray-200);
  transition: color 0.3s;
}
.tek-vitrina-arrow svg {
  transition: transform 0.3s ease;
}
.tek-vitrina-card:hover .tek-vitrina-arrow { border-top-color: rgba(239,231,210,0.2); }


/* ==========================================================================
   CATALOG PREMIUM (Apple / B&O style) — pagina /produse/
   ========================================================================== */

.tek-shop {
  background: var(--tek-white);
  padding: 64px 0 120px;
}
.tek-shop-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .tek-shop-container { padding: 0 20px; } }

/* Header foarte mare, tipografie B&O */
.tek-shop-header {
  padding: 16px 0 36px;
  border-bottom: 1px solid var(--tek-gray-200);
  margin-bottom: 36px;
}
.tek-shop-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tek-gray-500);
  margin-bottom: 20px;
}
.tek-shop-breadcrumb a { color: var(--tek-gray-500); transition: color 0.25s; }
.tek-shop-breadcrumb a:hover { color: var(--tek-navy); }
.tek-shop-breadcrumb span { color: var(--tek-gray-300); }
.tek-shop-breadcrumb .is-current { color: var(--tek-navy); }

.tek-shop-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tek-amber);
  margin-bottom: 18px;
}
.tek-shop-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--tek-navy);
  margin: 0 0 16px;
}
.tek-shop-title em {
  font-style: normal;
  font-weight: 400;
  color: var(--tek-gray-500);
  letter-spacing: -0.04em;
}
.tek-shop-count {
  font-size: 1rem;
  color: var(--tek-gray-500);
  margin: 0;
  letter-spacing: -0.005em;
}
.tek-shop-count strong {
  color: var(--tek-navy);
  font-weight: 600;
}

/* Layout 2 coloane */
.tek-shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 992px) {
  .tek-shop-layout {
    grid-template-columns: 240px 1fr;
    gap: 56px;
  }
}
@media (min-width: 1280px) {
  .tek-shop-layout {
    grid-template-columns: 260px 1fr;
    gap: 80px;
  }
}

/* Sidebar */
.tek-shop-sidebar {
  position: relative;
}
@media (min-width: 992px) {
  .tek-shop-sidebar-inner {
    position: sticky;
    top: 100px;
  }
}
.tek-filter-block {
  margin-bottom: 48px;
}
.tek-filter-block-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tek-navy);
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--tek-navy);
}
.tek-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tek-filter-list li {
  margin: 0;
}
.tek-filter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tek-gray-700);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.25s;
  border-bottom: 1px solid transparent;
}
.tek-filter-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--tek-gray-300);
  transition: all 0.25s;
}
.tek-filter-text {
  flex: 1;
}
.tek-filter-num {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--tek-gray-300);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.tek-filter-item:hover {
  color: var(--tek-navy);
}
.tek-filter-item:hover .tek-filter-dot {
  border-color: var(--tek-navy);
}
.tek-filter-item.is-active {
  color: var(--tek-navy);
  font-weight: 600;
}
.tek-filter-item.is-active .tek-filter-dot {
  background: var(--tek-amber);
  border-color: var(--tek-amber);
  box-shadow: 0 0 0 3px rgba(232, 171, 23, 0.15);
}
.tek-filter-item.is-active .tek-filter-num {
  color: var(--tek-amber);
  font-weight: 600;
}

/* Sublist (subcategorii Batante) */
.tek-filter-sublist {
  list-style: none;
  padding: 0 0 0 22px;
  margin: 2px 0 4px;
  border-left: 1px solid var(--tek-gray-200);
}
.tek-filter-item.is-sub {
  padding: 7px 0 7px 6px;
  font-size: 0.88rem;
  color: var(--tek-gray-500);
}
.tek-filter-item.is-sub.is-active {
  color: var(--tek-navy);
  font-weight: 600;
}
.tek-filter-item.is-sub.is-active .tek-filter-num {
  color: var(--tek-amber);
}

.tek-filter-help {
  margin-top: 56px;
  padding: 24px;
  background: var(--tek-cream-soft);
  border-radius: 4px;
}
.tek-filter-help p {
  font-size: 0.85rem;
  color: var(--tek-gray-500);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.tek-filter-help a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tek-navy);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.tek-filter-help a:hover { color: var(--tek-amber); }

/* Grid produse — 3 coloane dense */
.tek-shop-results {
  min-width: 0;
}
.tek-shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 20px;
}
@media (min-width: 500px)  { .tek-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .tek-shop-grid { grid-template-columns: repeat(3, 1fr); gap: 56px 28px; } }
@media (min-width: 1400px) { .tek-shop-grid { grid-template-columns: repeat(4, 1fr); gap: 56px 32px; } }

.tek-shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.tek-shop-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden !important;
  margin-bottom: 16px;
  display: block;
  isolation: isolate;
  border: 1px solid var(--tek-gray-200);
}
.tek-shop-card-img img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tek-shop-card:hover .tek-shop-card-img img {
  transform: scale(1.06);
}
.tek-shop-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 39, 56, 0.04) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s;
  pointer-events: none;
}
.tek-shop-card:hover .tek-shop-card-img::before { opacity: 1; }

.tek-shop-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  color: var(--tek-gray-300);
}
.tek-shop-card-placeholder svg { width: 50px; height: 50px; }

.tek-shop-card-cod {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--tek-navy);
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 9px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.tek-shop-card-meta {
  padding-top: 4px;
}
.tek-shop-card-cat {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tek-gray-500);
  margin-bottom: 6px;
}
.tek-shop-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--tek-navy);
  margin: 0;
  transition: color 0.25s;
}
.tek-shop-card:hover .tek-shop-card-title {
  color: var(--tek-amber);
}

/* Pagination */
.tek-shop-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid var(--tek-gray-200);
}
.tek-shop-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tek-gray-500);
  background: transparent;
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.02em;
  border: none;
}
.tek-shop-pagination .page-numbers:hover {
  color: var(--tek-navy);
}
.tek-shop-pagination .page-numbers.current {
  color: var(--tek-navy);
  font-weight: 700;
  position: relative;
}
.tek-shop-pagination .page-numbers.current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--tek-amber);
}
.tek-shop-pagination .prev,
.tek-shop-pagination .next {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tek-shop-empty {
  text-align: center;
  padding: 120px 20px;
}
.tek-shop-empty p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--tek-gray-500);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* Inline search bar (în search results page) */
.tek-search-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 6px 6px 6px 18px;
  background: var(--tek-white);
  border: 1px solid var(--tek-gray-300);
  border-radius: 6px;
  max-width: 560px;
  transition: border-color 0.25s;
}
.tek-search-inline:focus-within { border-color: var(--tek-amber); }
.tek-search-inline svg { color: var(--tek-gray-500); flex-shrink: 0; }
.tek-search-inline input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--tek-navy);
  padding: 12px 0;
  letter-spacing: -0.01em;
}
.tek-search-inline input[type="search"]::-webkit-search-cancel-button { display: none; }
.tek-search-inline input[type="search"]::placeholder { color: var(--tek-gray-500); }
.tek-search-inline button {
  padding: 10px 22px;
  background: var(--tek-navy);
  color: var(--tek-cream);
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.tek-search-inline button:hover { background: var(--tek-amber); color: var(--tek-navy); }

/* Empty state — niciun rezultat */
.tek-search-empty {
  text-align: center;
  padding: 80px 20px 120px;
  max-width: 600px;
  margin: 0 auto;
}
.tek-search-empty-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--tek-gray-300);
}
.tek-search-empty h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.tek-search-empty p {
  font-size: 1.05rem;
  color: var(--tek-gray-500);
  margin-bottom: 24px;
}
.tek-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.tek-search-suggestions strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--tek-gray-500);
  font-weight: 600;
  margin-right: 4px;
}
.tek-search-suggestions a {
  padding: 8px 16px;
  background: var(--tek-cream-soft);
  border: 1px solid var(--tek-gray-200);
  border-radius: 100px;
  color: var(--tek-navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.tek-search-suggestions a:hover {
  background: var(--tek-navy);
  border-color: var(--tek-navy);
  color: var(--tek-cream);
}

/* Old catalog styles (legacy fallback) */
.tek-catalog-hero {
  padding: 100px 0 60px;
  background: var(--tek-white);
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-catalog-eyebrow {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tek-gray-500);
  margin-bottom: 32px;
}
.tek-catalog-eyebrow a {
  color: var(--tek-gray-500);
  transition: color 0.25s;
}
.tek-catalog-eyebrow a:hover { color: var(--tek-navy); }
.tek-catalog-eyebrow span { color: var(--tek-gray-300); }
.tek-catalog-eyebrow > span:last-child { color: var(--tek-navy); }

.tek-catalog-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--tek-navy);
}
.tek-catalog-subtitle {
  font-size: 1.05rem;
  color: var(--tek-gray-500);
  margin: 0;
  letter-spacing: -0.005em;
}
.tek-catalog-subtitle strong {
  color: var(--tek-navy);
  font-weight: 600;
}

/* Filtre minimaliste */
.tek-catalog-wrap {
  padding: 60px 0 120px;
  background: var(--tek-white);
}
.tek-catalog-filters {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-filter-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .tek-filter-group {
    grid-template-columns: 160px 1fr;
    align-items: baseline;
  }
}
.tek-filter-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tek-gray-500);
}
.tek-filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: baseline;
}
.tek-filter-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--tek-gray-700);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.tek-filter-link sup {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--tek-gray-300);
  letter-spacing: 0;
  margin-left: 2px;
}
.tek-filter-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--tek-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tek-filter-link:hover {
  color: var(--tek-navy);
}
.tek-filter-link:hover::after { transform: scaleX(1); }
.tek-filter-link.is-active {
  color: var(--tek-navy);
  font-weight: 600;
}
.tek-filter-link.is-active::after {
  transform: scaleX(1);
  background: var(--tek-amber);
  height: 2px;
}
.tek-filter-link.is-active sup { color: var(--tek-amber); }

/* Grila premium 3 coloane cu mult whitespace */
.tek-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px 32px;
}
@media (min-width: 600px) { .tek-catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .tek-catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 80px 48px; } }
@media (min-width: 1400px) { .tek-catalog-grid { gap: 90px 56px; } }

.tek-catalog-item {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.tek-catalog-item-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--tek-gray-100);
  overflow: hidden;
  margin-bottom: 20px;
}
.tek-catalog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tek-catalog-item:hover .tek-catalog-item-img img {
  transform: scale(1.04);
}
.tek-catalog-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tek-navy);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.tek-catalog-item:hover .tek-catalog-item-img::after {
  opacity: 0.06;
}
.tek-catalog-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f4f4f4 0%, #ebebeb 100%);
  color: var(--tek-gray-300);
}
.tek-catalog-placeholder svg { width: 60px; height: 60px; }

.tek-catalog-item-meta {
  padding-top: 4px;
}
.tek-catalog-item-cat {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tek-gray-500);
  margin-bottom: 8px;
}
.tek-catalog-item-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--tek-navy);
  margin: 0 0 6px;
  transition: color 0.25s;
}
.tek-catalog-item:hover .tek-catalog-item-title {
  color: var(--tek-gray-700);
}
.tek-catalog-item-cod {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--tek-gray-500);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.tek-catalog-item:hover .tek-catalog-item-cod {
  color: var(--tek-amber);
}

/* Pagination minimalistă */
.tek-catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid var(--tek-gray-200);
}
.tek-catalog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tek-gray-500);
  background: transparent;
  border: none;
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.tek-catalog-pagination .page-numbers:hover {
  color: var(--tek-navy);
}
.tek-catalog-pagination .page-numbers.current {
  color: var(--tek-navy);
  font-weight: 700;
  position: relative;
}
.tek-catalog-pagination .page-numbers.current::after {
  content: "";
  position: absolute;
  left: 30%; right: 30%;
  bottom: 6px;
  height: 2px;
  background: var(--tek-amber);
}

.tek-catalog-empty {
  text-align: center;
  padding: 100px 20px;
}
.tek-catalog-empty p {
  font-size: 1.1rem;
  color: var(--tek-gray-500);
  margin-bottom: 24px;
}

/* ==========================================================================
   TABEL VARIANTE (pe pagina produsului — între conținut și produse similare)
   ========================================================================== */
.tek-variants {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid var(--tek-gray-200);
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-variants-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.tek-variants-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tek-amber);
  margin-bottom: 14px;
}
.tek-variants-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.tek-variants-header p {
  font-size: 1rem;
  color: var(--tek-gray-500);
  margin: 0;
}
/* Layout content: schiță + tabel side-by-side când există ambele */
.tek-variants-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 680px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 900px) {
  .tek-variants-content.has-both {
    grid-template-columns: 1fr 320px;
    gap: 28px;
    max-width: 920px;
  }
}

.tek-variants-schita {
  max-width: 360px;
  margin: 0 auto 0;
  padding: 18px 24px 22px;
  background: var(--tek-white);
  border-radius: 8px;
  border: 1px solid var(--tek-gray-200);
  text-align: center;
}
.tek-variants-content.has-both .tek-variants-schita {
  max-width: 100%;
  margin: 0;
  position: sticky;
  top: 100px;
}
.tek-variants-schita-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tek-amber);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-variants-schita img {
  max-width: 100%;
  max-height: 300px;
  height: auto;
  width: auto;
  margin: 0 auto;
  display: block;
}

.tek-variants-table-wrap {
  max-width: 680px;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--tek-cream-soft);
  border-radius: 8px;
  border: 1px solid var(--tek-gray-200);
}
.tek-variants-content.has-both .tek-variants-table-wrap {
  max-width: 100%;
  margin: 0;
}
.tek-variants-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
}
.tek-variants-table thead {
  background: var(--tek-navy);
}
.tek-variants-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tek-cream);
  white-space: nowrap;
}
.tek-variants-table thead th:first-child {
  border-radius: 8px 0 0 0;
}
.tek-variants-table thead th:last-child {
  border-radius: 0 8px 0 0;
}
.tek-variants-table thead th.tek-variants-action { text-align: right; }
.tek-variants-table tbody tr {
  background: var(--tek-white);
  transition: background 0.2s;
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-variants-table tbody tr:last-child { border-bottom: none; }
.tek-variants-table tbody tr:hover {
  background: var(--tek-cream-soft);
}
.tek-variants-table tbody tr.is-current {
  background: rgba(232, 171, 23, 0.08);
  position: relative;
}
.tek-variants-table tbody tr.is-current td:first-child {
  box-shadow: inset 3px 0 0 var(--tek-amber);
}
.tek-variants-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--tek-gray-700);
  letter-spacing: -0.005em;
}
.tek-variants-table td.tek-variants-cod {
  font-weight: 700;
  color: var(--tek-navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.tek-variants-table tbody tr.is-current .tek-variants-cod {
  color: var(--tek-amber);
}
.tek-variants-table td.tek-variants-action {
  text-align: right;
  white-space: nowrap;
}
.tek-variants-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tek-navy);
  text-decoration: none;
  transition: color 0.2s;
  padding: 6px 0;
}
.tek-variants-link:hover {
  color: var(--tek-amber);
}
.tek-variants-link svg { transition: transform 0.2s; }
.tek-variants-link:hover svg { transform: translateX(3px); }
.tek-variants-current {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--tek-amber);
  color: var(--tek-navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

@media (max-width: 600px) {
  .tek-variants-table thead th,
  .tek-variants-table td { padding: 12px 14px; font-size: 0.88rem; }
  .tek-variants-link { font-size: 0.7rem; }
}

/* Archive / filters (vechi - păstrat pentru compat) */
.tek-archive-wrap { padding: 60px 0 100px; }
.tek-archive-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 2px solid var(--tek-gray-200); }
.tek-archive-count { font-size: 0.95rem; color: var(--tek-gray-500); }
.tek-archive-count strong { color: var(--tek-navy); }
.tek-cat-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; }
.tek-cat-filter { padding: 10px 20px; background: var(--tek-white); border: 1px solid var(--tek-gray-200); color: var(--tek-navy); font-size: 0.9rem; font-weight: 500; border-radius: 100px; text-decoration: none; transition: all var(--tek-transition); }
.tek-cat-filter:hover, .tek-cat-filter.is-active { background: var(--tek-navy); border-color: var(--tek-navy); color: var(--tek-cream); }
.tek-cat-filter.is-active { background: var(--tek-amber); border-color: var(--tek-amber); color: var(--tek-navy); }

/* Pagination */
.tek-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 60px; }
.tek-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; font-weight: 600; color: var(--tek-navy); background: var(--tek-white); border: 1px solid var(--tek-gray-200); border-radius: var(--tek-radius); text-decoration: none; transition: all var(--tek-transition); }
.tek-pagination .page-numbers:hover, .tek-pagination .page-numbers.current { background: var(--tek-amber); border-color: var(--tek-amber); color: var(--tek-navy); }

/* Footer */
.tek-footer { background: var(--tek-navy-deep); color: rgba(239,231,210,0.75); padding: 80px 0 30px; }
.tek-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
@media (min-width: 768px) { .tek-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.tek-footer h4, .tek-footer .footer-widget-title { color: var(--tek-cream); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; font-family: var(--font-display); }
.tek-footer-about p { font-size: 0.95rem; line-height: 1.7; }
.tek-footer ul { list-style: none; padding: 0; margin: 0; }
.tek-footer ul li { margin-bottom: 10px; }
.tek-footer a { color: rgba(239,231,210,0.75); font-size: 0.95rem; }
.tek-footer a:hover { color: var(--tek-amber); }
.tek-footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; align-items: flex-start; }
.tek-footer-contact-item svg { flex-shrink: 0; margin-top: 4px; color: var(--tek-amber); }
.tek-footer-bottom { padding-top: 30px; border-top: 1px solid rgba(239,231,210,0.1); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; font-size: 0.85rem; }

/* Contact */
.tek-contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 992px) { .tek-contact-grid { grid-template-columns: 1fr 1.5fr; } }
.tek-contact-card { padding: 36px; background: var(--tek-cream-soft); border-radius: var(--tek-radius-lg); border-left: 4px solid var(--tek-amber); }
.tek-contact-item { display: flex; gap: 18px; margin-bottom: 28px; }
.tek-contact-item:last-child { margin-bottom: 0; }
.tek-contact-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--tek-navy); color: var(--tek-amber); border-radius: var(--tek-radius); display: flex; align-items: center; justify-content: center; }
.tek-contact-item h4 { font-size: 1rem; margin-bottom: 4px; }
.tek-contact-item p, .tek-contact-item a { margin: 0; font-size: 0.95rem; color: var(--tek-gray-700); }
.tek-contact-form { background: var(--tek-white); border: 1px solid var(--tek-gray-200); border-radius: var(--tek-radius-lg); padding: 40px; }
.tek-form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 600px) { .tek-form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.tek-form-field { display: flex; flex-direction: column; gap: 6px; }
.tek-form-field label { font-size: 0.85rem; font-weight: 600; color: var(--tek-navy); text-transform: uppercase; letter-spacing: 0.05em; }
.tek-form-field input, .tek-form-field textarea, .tek-form-field select { padding: 14px 16px; font-family: inherit; font-size: 1rem; background: var(--tek-white); border: 1px solid var(--tek-gray-300); border-radius: var(--tek-radius); transition: border-color var(--tek-transition), box-shadow var(--tek-transition); }
.tek-form-field input:focus, .tek-form-field textarea:focus, .tek-form-field select:focus { outline: none; border-color: var(--tek-amber); box-shadow: 0 0 0 3px rgba(232,171,23,0.15); }
.tek-form-field textarea { resize: vertical; min-height: 140px; }

/* ─────────────────────────────────────────────────────────────────────────
   PAGINĂ DEVINO PARTENER
   ───────────────────────────────────────────────────────────────────────── */
.tek-partener-hero {
  background: linear-gradient(135deg, var(--tek-navy-deep) 0%, var(--tek-navy) 100%);
  color: var(--tek-cream);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.tek-partener-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,171,23,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.tek-partener-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) { .tek-partener-hero-grid { grid-template-columns: 1.3fr 1fr; gap: 60px; } }

.tek-partener-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(232,171,23,0.15);
  border: 1px solid rgba(232,171,23,0.3);
  color: var(--tek-amber);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-bottom: 18px;
}
.tek-partener-pulse {
  width: 8px;
  height: 8px;
  background: var(--tek-amber);
  border-radius: 50%;
  position: relative;
}
.tek-partener-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--tek-amber);
  opacity: 0.4;
  animation: tek-pulse 2s infinite ease-out;
}
@keyframes tek-pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
.tek-partener-hero h1 {
  color: var(--tek-cream);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.tek-partener-hero-accent { color: var(--tek-amber); }
.tek-partener-hero-lead {
  font-size: 1rem;
  color: rgba(239,231,210,0.85);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 20px;
}
.tek-partener-hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 24px;
  max-width: 560px;
}
.tek-partener-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--tek-cream);
}
.tek-partener-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--tek-amber);
  color: var(--tek-navy);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}
.tek-partener-hero-visual {
  position: relative;
  text-align: center;
}
.tek-partener-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.tek-partener-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: rgba(232,171,23,0.06);
  border: 1px solid rgba(232,171,23,0.15);
  border-radius: 12px;
  color: var(--tek-amber);
}

/* Sections generale */
.tek-partener-section {
  padding: 48px 0;
  background: var(--tek-white);
}
.tek-partener-section + .tek-partener-section { padding-top: 32px; }
.tek-partener-section .tek-section-header { margin-bottom: 36px; }
.tek-partener-section.tek-section-cream { background: var(--tek-cream-soft); }
.tek-partener-section-dark {
  background: linear-gradient(135deg, var(--tek-navy-deep) 0%, var(--tek-navy) 100%);
  color: var(--tek-cream);
}

/* 4 carduri avantaje */
.tek-partener-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .tek-partener-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tek-partener-cards { grid-template-columns: repeat(4, 1fr); } }
.tek-partener-card {
  background: var(--tek-white);
  border: 1px solid var(--tek-gray-200);
  border-radius: 8px;
  padding: 24px 22px;
  transition: all 0.3s ease;
  position: relative;
}
.tek-partener-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tek-amber);
  border-radius: 8px 8px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tek-partener-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26,39,56,0.12);
  border-color: var(--tek-navy);
}
.tek-partener-card:hover::before { transform: scaleX(1); }
.tek-partener-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tek-navy);
  color: var(--tek-amber);
  border-radius: 8px;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.tek-partener-card-icon svg { width: 24px; height: 24px; }
.tek-partener-card:hover .tek-partener-card-icon {
  background: var(--tek-amber);
  color: var(--tek-navy);
}
.tek-partener-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tek-partener-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tek-partener-card li {
  font-size: 0.88rem;
  color: var(--tek-gray-700);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.45;
}
.tek-partener-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--tek-amber);
  font-weight: 700;
}

/* Text split sections */
.tek-partener-text-split {
  max-width: 820px;
  margin: 0 auto;
}
.tek-partener-combined {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tek-partener-combined {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.tek-partener-combined-col h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 8px 0 14px;
  line-height: 1.25;
}
.tek-partener-combined-col p {
  font-size: 0.95rem;
  color: var(--tek-gray-700);
  line-height: 1.6;
  margin-bottom: 12px;
}
.tek-partener-combined-col .tek-partener-list { margin: 12px 0; }

.tek-partener-text-split h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.tek-partener-text-split p {
  font-size: 1rem;
  color: var(--tek-gray-700);
  line-height: 1.65;
  margin-bottom: 12px;
}
.tek-partener-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.tek-partener-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--tek-gray-700);
  border-bottom: 1px solid var(--tek-gray-200);
}
.tek-partener-list li:last-child { border-bottom: none; }
.tek-partener-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--tek-amber);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/14px no-repeat;
}

/* Despre TEK */
.tek-partener-about {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.tek-partener-about h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.tek-partener-about h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--tek-amber);
}
.tek-partener-about p {
  font-size: 1rem;
  color: var(--tek-gray-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Formular */
.tek-partener-form-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.tek-partener-form-header {
  text-align: center;
  margin-bottom: 28px;
}
.tek-partener-form-header h2 {
  color: var(--tek-cream);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.tek-partener-form-header p {
  color: rgba(239,231,210,0.8);
  font-size: 0.95rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}
.tek-partener-form {
  background: var(--tek-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
@media (max-width: 600px) { .tek-partener-form { padding: 24px; } }
.tek-partener-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
.tek-partener-fieldset legend {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tek-amber);
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--tek-gray-200);
  width: 100%;
}
.tek-partener-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.tek-partener-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 600px) {
  .tek-partener-grid-2 { grid-template-columns: 1fr 1fr; }
  .tek-partener-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.tek-partener-form .tek-form-field { display: flex; flex-direction: column; gap: 6px; }
.tek-partener-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tek-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tek-partener-form input,
.tek-partener-form select,
.tek-partener-form textarea {
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--tek-white);
  border: 1px solid var(--tek-gray-300);
  border-radius: 4px;
  color: var(--tek-navy);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.tek-partener-form input:focus,
.tek-partener-form select:focus,
.tek-partener-form textarea:focus {
  outline: none;
  border-color: var(--tek-amber);
  box-shadow: 0 0 0 3px rgba(232,171,23,0.15);
}
.tek-partener-form textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.tek-partener-terms {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--tek-gray-700);
  margin: 14px 0 24px;
  line-height: 1.5;
  cursor: pointer;
}
.tek-partener-terms input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--tek-amber);
  width: 18px;
  height: 18px;
}
.tek-partener-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: var(--tek-amber);
  color: var(--tek-navy);
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.tek-partener-submit:hover {
  background: var(--tek-amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232,171,23,0.35);
}
.tek-partener-submit svg { transition: transform 0.25s; }
.tek-partener-submit:hover svg { transform: translateX(4px); }

/* Default page content */
.tek-page-content { padding: 60px 0 100px; max-width: 820px; margin: 0 auto; }
.tek-page-content p { font-size: 1.05rem; line-height: 1.8; color: var(--tek-gray-700); }
.tek-page-content h2, .tek-page-content h3 { margin-top: 1.5em; }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }

/* Animations */
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.tek-fade-up { animation: fade-up 0.7s ease-out both; }
.tek-fade-up:nth-child(2) { animation-delay: 0.1s; }
.tek-fade-up:nth-child(3) { animation-delay: 0.2s; }
.tek-fade-up:nth-child(4) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 767px) {
  .tek-section { padding: 70px 0; }
  .tek-hero { padding: 80px 0 100px; }
  .tek-hero-stats { gap: 24px; margin-top: 50px; }
  .tek-cta-banner { padding: 60px 30px; }
  .tek-cta-banner::before { width: 100%; clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%); }
}
