/*
Theme Name: TicketsFest
Theme URI: https://ticketsfest.eu/
Author: TicketsFest
Description: TicketsFest standalone theme (design system + CPT templates).
Version: 2.0.0
Text Domain: ticketsfest
*/

/* =====================================================
   TicketsFest Design System v2 — "Teal Curtain"
   Palette: Deep Teal + Warm Slate + Ivory
   Fonts: Satoshi (display) · DM Sans (body)
   ===================================================== */

:root {
  /* ── Palette ── */
  --tfe-primary: #0D9488;
  --tfe-primary-dark: #0F766E;
  --tfe-primary-light: #14B8A6;
  --tfe-primary-muted: rgba(13, 148, 136, 0.10);
  --tfe-primary-glow: rgba(13, 148, 136, 0.25);

  --tfe-dark: #111827;
  --tfe-dark-soft: #1F2937;
  --tfe-muted: #6B7280;
  --tfe-muted-light: #9CA3AF;
  --tfe-bg: #FAFAF8;
  --tfe-white: #FFFFFF;
  --tfe-ivory: #F5F5F0;
  --tfe-soft: #E8F5F3;
  --tfe-border: rgba(209, 213, 219, 0.7);
  --tfe-border-light: rgba(209, 213, 219, 0.35);

  /* ── Accents ── */
  --tfe-red: #DC2626;
  --tfe-green: #16A34A;
  --tfe-yellow: #F59E0B;
  --tfe-sold-out: #DC2626;
  --tfe-on-sale: #16A34A;

  /* ── Shapes ── */
  --tfe-radius: 16px;
  --tfe-radius-sm: 8px;
  --tfe-radius-xs: 4px;
  --tfe-radius-xl: 24px;
  --tfe-radius-pill: 999px;

  /* ── Shadows ── */
  --tfe-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --tfe-shadow: 0 4px 16px -4px rgba(17, 24, 39, 0.06);
  --tfe-shadow-md: 0 8px 24px -6px rgba(17, 24, 39, 0.10);
  --tfe-shadow-lg: 0 16px 40px -8px rgba(17, 24, 39, 0.12);
  --tfe-shadow-hover: 0 20px 44px -8px rgba(13, 148, 136, 0.18);
  --tfe-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);

  /* ── Typography ── */
  --tfe-font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --tfe-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* ── Layout ── */
  --tfe-container: 1320px;
  --tfe-pad: 24px;
  --tfe-header-h: 120px; /* two-line header */
  --tfe-section-py: 72px;

  /* ── Motion ── */
  --tfe-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --tfe-duration: 0.25s;
}

/* =====================================================
   BASE RESET
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background: var(--tfe-bg);
  color: var(--tfe-dark);
  font-family: var(--tfe-font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Global SVG default — prevents giant icons */
svg { max-width: 100%; height: auto; }
svg:not(:root) { overflow: hidden; }

a { color: var(--tfe-primary); text-decoration: none; transition: color var(--tfe-duration) var(--tfe-ease); }
a:hover { color: var(--tfe-primary-dark); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tfe-font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--tfe-dark);
}

/* =====================================================
   LAYOUT
   ===================================================== */

#page, #content, .site-content { width: 100%; max-width: 100%; overflow-x: hidden; }

.tfe-container,
.footer-wrapper {
  width: 100%;
  max-width: var(--tfe-container);
  margin: 0 auto;
  padding: 0 var(--tfe-pad);
}

.tfe-page-wrap { padding: 0 0 60px; }

.tfe-card {
  background: var(--tfe-white);
  border: 1px solid var(--tfe-border);
  border-radius: var(--tfe-radius);
  box-shadow: var(--tfe-shadow-card);
  padding: 18px;
}

/* =====================================================
   TWO-LINE HEADER
   ===================================================== */

.tfe-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--tfe-white);
  border-bottom: 1px solid var(--tfe-border);
  box-shadow: var(--tfe-shadow-xs);
}

/* ── Top line: logo + search + lang ── */
.tfe-header-top {
  max-width: var(--tfe-container);
  margin: 0 auto;
  padding: 14px var(--tfe-pad);
  display: flex;
  align-items: center;
  gap: 24px;
}

.tfe-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.tfe-logo img {
  height: 34px;
  width: auto;
  display: block;
  transition: transform var(--tfe-duration) var(--tfe-ease);
}
.tfe-logo:hover img { transform: scale(1.04); }

.tfe-logo-text {
  font-family: var(--tfe-font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--tfe-dark);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.tfe-logo-accent { color: var(--tfe-primary); }

/* Search */
.tfe-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.tfe-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--tfe-border);
  border-radius: var(--tfe-radius-pill);
  font-family: var(--tfe-font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--tfe-ivory);
  color: var(--tfe-dark);
  outline: none;
  transition: all var(--tfe-duration) var(--tfe-ease);
}
.tfe-search-input::placeholder { color: var(--tfe-muted-light); }
.tfe-search-input:focus {
  background: var(--tfe-white);
  border-color: var(--tfe-primary);
  box-shadow: 0 0 0 3px var(--tfe-primary-muted);
}
.tfe-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--tfe-muted-light);
  pointer-events: none;
}

/* Lang switcher */
.tfe-lang {
  display: flex;
  gap: 2px;
  background: var(--tfe-ivory);
  padding: 3px;
  border-radius: var(--tfe-radius-sm);
  flex-shrink: 0;
}
.tfe-lang a {
  padding: 5px 11px;
  font-family: var(--tfe-font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--tfe-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--tfe-duration) var(--tfe-ease);
  letter-spacing: 0.02em;
}
.tfe-lang a:hover { color: var(--tfe-primary); }
.tfe-lang a.is-active {
  background: var(--tfe-white);
  color: var(--tfe-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ── Bottom line: category tabs ── */
.tfe-header-cats {
  max-width: var(--tfe-container);
  margin: 0 auto;
  padding: 0 var(--tfe-pad);
}
.tfe-cat-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}
.tfe-cat-nav::-webkit-scrollbar { display: none; }

.tfe-cat-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-family: var(--tfe-font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--tfe-muted);
  text-decoration: none;
  border-radius: var(--tfe-radius-pill);
  white-space: nowrap;
  transition: all var(--tfe-duration) var(--tfe-ease);
  border: 1px solid transparent;
}
.tfe-cat-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  color: var(--tfe-muted-light);
  transition: color var(--tfe-duration) var(--tfe-ease);
}
.tfe-cat-link:hover {
  color: var(--tfe-primary);
  background: var(--tfe-primary-muted);
}
.tfe-cat-link:hover svg { color: var(--tfe-primary); }

.tfe-cat-link.is-active {
  color: var(--tfe-white);
  background: var(--tfe-primary);
  border-color: var(--tfe-primary);
}
.tfe-cat-link.is-active svg { color: var(--tfe-white); }

/* City / Country selectors in header */
.tfe-header-selectors {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.tfe-header-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--tfe-ivory);
  border: 1px solid var(--tfe-border);
  border-radius: var(--tfe-radius-pill);
  padding: 7px 32px 7px 14px;
  font-family: var(--tfe-font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--tfe-dark-soft);
  cursor: pointer;
  transition: border-color var(--tfe-duration) var(--tfe-ease);
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%230D9488%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
.tfe-header-select:hover { border-color: var(--tfe-primary); }
.tfe-header-select:focus {
  outline: none;
  border-color: var(--tfe-primary);
  box-shadow: 0 0 0 3px var(--tfe-primary-muted);
}

/* Burger (mobile) */
.tfe-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: flex-end;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.tfe-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--tfe-dark);
  border-radius: 2px;
  transition: all 0.3s var(--tfe-ease);
}
.tfe-burger span:nth-child(2) {
  width: 16px;
  background-color: var(--tfe-primary);
}

/* =====================================================
   MOBILE MENU OVERLAY
   ===================================================== */

.tfe-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  padding: 24px;
  padding-top: calc(24px + env(safe-area-inset-top));
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--tfe-ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.tfe-mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.tfe-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.tfe-mobile-title {
  font-family: var(--tfe-font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--tfe-dark);
}
.tfe-mobile-close {
  width: 40px;
  height: 40px;
  background: var(--tfe-ivory);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--tfe-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tfe-duration) var(--tfe-ease);
}
.tfe-mobile-close:hover {
  background: var(--tfe-primary);
  color: var(--tfe-white);
  transform: rotate(90deg);
}

.tfe-mobile-search { margin-bottom: 24px; position: relative; }
.tfe-mobile-search input {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--tfe-border);
  border-radius: var(--tfe-radius-sm);
  font-family: var(--tfe-font-body);
  font-size: 16px;
  background: var(--tfe-ivory);
  color: var(--tfe-dark);
  outline: none;
}
.tfe-mobile-search input:focus {
  border-color: var(--tfe-primary);
  box-shadow: 0 0 0 3px var(--tfe-primary-muted);
}

.tfe-mobile-section-title {
  font-family: var(--tfe-font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--tfe-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.tfe-mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.tfe-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--tfe-ivory);
  border-radius: var(--tfe-radius-sm);
  text-decoration: none;
  color: var(--tfe-dark);
  font-family: var(--tfe-font-display);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all var(--tfe-duration) var(--tfe-ease);
}
.tfe-mobile-link:hover {
  border-color: var(--tfe-primary);
  color: var(--tfe-primary);
}

.tfe-mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid var(--tfe-border);
  padding-top: 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.tfe-mobile-lang a {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: var(--tfe-ivory);
  border-radius: var(--tfe-radius-sm);
  font-family: var(--tfe-font-display);
  font-weight: 800;
  color: var(--tfe-muted);
  text-decoration: none;
  transition: all var(--tfe-duration) var(--tfe-ease);
}
.tfe-mobile-lang a.is-active {
  background: var(--tfe-primary);
  color: var(--tfe-white);
}

/* Mobile WP menu fallback list */
.tfe-mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tfe-mobile-nav-links a {
  display: block;
  padding: 12px 14px;
  background: var(--tfe-ivory);
  border-radius: var(--tfe-radius-sm);
  color: var(--tfe-dark);
  font-family: var(--tfe-font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--tfe-duration) var(--tfe-ease);
}
.tfe-mobile-nav-links a:hover {
  color: var(--tfe-primary);
  padding-left: 20px;
}

.tfe-mobile-section { margin-bottom: 8px; }

/* ── Header scroll state ── */
.tfe-header.is-scrolled {
  box-shadow: var(--tfe-shadow);
}
.tfe-header.is-scrolled .tfe-header-top {
  padding-top: 10px;
  padding-bottom: 10px;
}
.tfe-header.is-scrolled .tfe-logo img { height: 28px; }
.tfe-header.is-scrolled .tfe-cat-nav { padding-bottom: 8px; }

/* ── Responsive header ── */
@media (max-width: 1100px) {
  .tfe-search,
  .tfe-lang,
  .tfe-header-selectors { display: none; }
  .tfe-burger { display: flex; margin-left: auto; }
  .tfe-header-top { padding: 12px 16px; }
  .tfe-header-cats { display: none; }
}

@media (max-width: 768px) {
  .tfe-logo img { height: 28px; }
  .tfe-logo-text { font-size: 18px; }
}

/* =====================================================
   FOOTER (Dark Slate)
   ===================================================== */

.tfe-footer {
  background: var(--tfe-dark);
  color: var(--tfe-muted-light);
  padding: 64px var(--tfe-pad) 32px;
  font-family: var(--tfe-font-body);
  border-top: 3px solid var(--tfe-primary);
  font-size: 14px;
}
.tfe-footer-inner {
  max-width: var(--tfe-container);
  margin: 0 auto;
}
.tfe-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.tfe-footer-brand-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
.tfe-footer-brand-logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.tfe-footer-logo-text {
  font-family: var(--tfe-font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--tfe-white);
  letter-spacing: -0.02em;
}
.tfe-footer-logo-accent { color: var(--tfe-primary-light); }

.tfe-footer-company {
  color: #F3F4F6;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.tfe-footer-address {
  line-height: 1.6;
  color: var(--tfe-muted);
}

.tfe-social-row { display: flex; gap: 14px; margin-top: 24px; }
.tfe-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tfe-muted-light);
  text-decoration: none;
  transition: all var(--tfe-duration) var(--tfe-ease);
}
.tfe-social-btn:hover {
  background: var(--tfe-primary);
  color: var(--tfe-white);
  transform: translateY(-2px);
}
.tfe-social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.tfe-footer-heading {
  font-family: var(--tfe-font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--tfe-white);
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tfe-footer-links { list-style: none; padding: 0; margin: 0; }
.tfe-footer-links li { margin-bottom: 12px; }
.tfe-footer-links a {
  color: var(--tfe-muted-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--tfe-duration) var(--tfe-ease);
}
.tfe-footer-links a:hover { color: var(--tfe-white); }

.tfe-email-wrap { position: relative; margin-bottom: 20px; }
.tfe-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tfe-primary-light);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--tfe-duration) var(--tfe-ease);
}
.tfe-email-link:hover { color: var(--tfe-white); }
.tfe-email-link svg { width: 16px; height: 16px; }

.tfe-copy-msg {
  position: absolute;
  top: -28px;
  left: 0;
  background: var(--tfe-primary);
  color: var(--tfe-white);
  padding: 4px 10px;
  border-radius: var(--tfe-radius-xs);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s ease;
  pointer-events: none;
}
.tfe-copy-msg.is-visible { opacity: 1; transform: translateY(0); }

.tfe-payments-list { color: var(--tfe-muted); font-size: 13px; line-height: 1.8; }

.tfe-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--tfe-muted);
}

@media (max-width: 1024px) {
  .tfe-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .tfe-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .tfe-footer-col--brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .tfe-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .tfe-footer-col--brand { grid-column: span 1; }
  .tfe-footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .tfe-footer { padding-top: 48px; }
}

/* =====================================================
   MINIMAL WP CONTENT DEFAULTS
   ===================================================== */

.entry-title {
  margin: 0 0 14px;
  font-family: var(--tfe-font-display);
}
.entry-content { line-height: 1.75; }

/* =====================================================
   APP SHELL LOADING STATE
   ===================================================== */

body.tfe-is-loading::before {
  content: '';
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--tfe-primary) 0%, var(--tfe-primary-light) 50%, var(--tfe-primary) 100%);
  z-index: 999999;
  animation: tfe-loading-bar 1s linear infinite;
}

body.tfe-is-loading #main {
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

@keyframes tfe-loading-bar {
  0% { transform: translateX(-35%); }
  100% { transform: translateX(35%); }
}

/* =====================================================
   CRM PLUGIN STYLE OVERRIDES
   ===================================================== */

/* Override CRM token colors to match theme */
.tfe-wrap {
  --tfe-primary: #0D9488;
  --tfe-primary-hover: #0F766E;
  --tfe-line: rgba(209, 213, 219, 0.5);
  --tfe-font-main: var(--tfe-font-body);
  --tfe-radius: 16px;
  --tfe-shadow: var(--tfe-shadow);
  --tfe-shadow-strong: var(--tfe-shadow-lg);
}

/* CRM cards: match theme radius and shadows */
.tfe-card-item {
  border-radius: var(--tfe-radius);
  box-shadow: var(--tfe-shadow-card);
}
.tfe-card-item:hover {
  box-shadow: var(--tfe-shadow-hover);
}

/* CRM overlay: use teal gradient instead of blue */
.tfe-overlay {
  background: linear-gradient(165deg, var(--tfe-primary-light) 0%, var(--tfe-primary-dark) 100%);
}

/* CRM badges: use theme accent colors */
.tfe-card-item[data-soldout="1"]::after {
  border-radius: var(--tfe-radius-sm);
}
.tfe-card-item[data-onsale="1"]:not([data-soldout="1"])::after {
  border-radius: var(--tfe-radius-sm);
}

/* CRM buttons: match theme */
.tfe-btn-details {
  color: var(--tfe-primary) !important;
  border-radius: var(--tfe-radius-sm);
  font-family: var(--tfe-font-display);
}

.tfe-btn-load-more {
  background: var(--tfe-primary);
  border-radius: var(--tfe-radius-pill);
  font-family: var(--tfe-font-display);
}
.tfe-btn-load-more:hover {
  background: var(--tfe-primary-dark);
}

/* CRM select chips */
.tfe-select-chip {
  border-radius: var(--tfe-radius-pill);
  font-family: var(--tfe-font-display);
  color: var(--tfe-primary-dark);
  border-color: var(--tfe-border);
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230D9488%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
}
.tfe-select-chip:hover { border-color: var(--tfe-primary); }

/* CRM nav buttons (Swiper arrows) */
.tfe-nav-btn {
  border-color: var(--tfe-border);
  color: var(--tfe-primary);
  border-radius: 50%;
}
.tfe-nav-btn:hover {
  background: var(--tfe-primary);
  color: var(--tfe-white);
  border-color: var(--tfe-primary);
}

/* CRM date badge */
.tfe-date-badge {
  color: var(--tfe-primary);
  border-radius: var(--tfe-radius-pill);
}

/* CRM lang switcher */
.tfe-lang-switcher {
  border-color: var(--tfe-border);
  border-radius: var(--tfe-radius-pill);
}
.tfe-lang-link.active {
  background: var(--tfe-primary);
  box-shadow: 0 2px 8px var(--tfe-primary-glow);
}
.tfe-lang-link:hover { color: var(--tfe-primary); }

/* Sale price highlight */
.tfe-card-item[data-onsale="1"] .tfe-price {
  color: var(--tfe-yellow);
}

/* CRM title font */
.tfe-title {
  font-family: var(--tfe-font-display);
}