/* ============================================================
   Tech Spectrum (Cyprus) Ltd - Shared Stylesheet
   Premium, direct, lightweight Bootstrap layer
   ============================================================ */

   :root {
    --ink: #121926;
    --ink-2: #1f2937;
    --steel: #516275;
    --muted: #697586;
    --line: #d9e1ea;
    --paper: #ffffff;
    --mist: #f5f7fa;
    --panel: #eef3f6;
    --navy: #0f1b2a;
    --navy-2: #172435;
    --teal: #229c98;
    --teal-2: #dff4f2;
    --gold: #c89432;
    --gold-2: #f4e4c6;
    --white: #ffffff;
    --radius: 8px;
    --nav-h: 90px;
    --shadow: 0 18px 50px rgba(18, 25, 38, .09);
    --slate-900: var(--navy);
    --slate-800: var(--ink);
    --slate-700: #2d3d50;
    --slate-500: var(--muted);
    --slate-300: #a9b6c5;
    --slate-100: var(--line);
    --slate-50: var(--mist);
    --accent: var(--teal);
    --accent-lt: #72d6d2;
    --text-body: var(--ink-2);
    --text-muted: var(--muted);
    --border: var(--line);
  }
  
  *, *::before, *::after { box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    color: var(--ink);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: 0;
  }
  
  h1 { font-size: clamp(2.45rem, 5vw, 4.7rem); }
  h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); }
  h3 { font-size: 1.35rem; }
  
  p { color: var(--steel); }
  a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
  a:hover { color: var(--ink); }
  
  .container { max-width: 1180px; }
  
  /* ---- Navbar ---- */
  .ts-nav {
    min-height: var(--nav-h);
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    z-index: 1000;
  }
  
  .ts-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
  }
  
  .ts-logomark {
    height: 64px;
    width: auto;
    max-width: 360px;
    flex-shrink: 0;
    display: block;
  }
  
  .ts-footer .ts-logomark {
    height: 48px;
  }
  
  .brand-name {
    display: none;
  }
  
  .brand-name span {
    display: none;
  }
  
  .ts-nav .nav-link {
    color: var(--steel) !important;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem .85rem !important;
    position: relative;
  }
  
  .ts-nav .nav-link::after {
    content: '';
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .15rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
  }
  
  .ts-nav .nav-link:hover,
  .ts-nav .nav-link.active { color: var(--ink) !important; }
  
  .ts-nav .nav-link:hover::after,
  .ts-nav .nav-link.active::after { transform: scaleX(1); }
  
  .navbar-toggler { border-color: var(--line); }
  .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(34, 156, 152, .15); }
  
  .btn-ts-primary,
  .btn-ts-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: var(--radius);
    padding: 12px 24px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.2;
    transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }
  
  .btn-ts-primary {
    background: var(--ink);
    color: var(--white);
    border: 1px solid var(--ink);
  }
  
  .btn-ts-primary:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-1px);
  }
  
  .btn-ts-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }
  
  .btn-ts-ghost:hover {
    color: var(--ink);
    border-color: var(--ink);
    transform: translateY(-1px);
  }
  
  .ts-hero .btn-ts-ghost,
  .geo-band .btn-ts-ghost,
  .page-hero .btn-ts-ghost {
    color: rgba(255,255,255,.84);
    border-color: rgba(255,255,255,.28);
  }
  
  .ts-hero .btn-ts-ghost:hover,
  .geo-band .btn-ts-ghost:hover,
  .page-hero .btn-ts-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.64);
  }
  
  .nav-contact {
    min-height: 38px;
    padding: 10px 18px;
    font-size: .72rem;
  }
  
  .lang-switch {
    display: inline-flex;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--mist);
  }
  
  .lang-switch button {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    padding: 5px 8px;
  }
  
  .lang-switch button.active {
    background: var(--ink);
    color: var(--white);
  }
  
  /* ---- Hero ---- */
  .ts-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 90px;
    background:
      linear-gradient(115deg, rgba(15, 27, 42, .96), rgba(15, 27, 42, .84) 50%, rgba(34, 156, 152, .18)),
      linear-gradient(90deg, var(--navy), var(--navy-2));
  }
  
  .ts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
  }
  
  .ts-hero-grid { display: none; }
  .ts-hero .container { z-index: 2; }
  
  .hero-art {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 26px;
    background: rgba(255,255,255,.045);
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
    overflow: hidden;
  }
  
  .hero-art img {
    display: block;
    width: 100%;
    min-height: 490px;
    object-fit: cover;
    border-radius: 18px;
    filter: saturate(.86) contrast(1.04);
  }
  
  .hero-art::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background:
      linear-gradient(120deg, rgba(15,27,42,.78), transparent 46%),
      linear-gradient(0deg, rgba(15,27,42,.62), transparent 52%);
    pointer-events: none;
  }
  
  .hero-art-panel {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    background: rgba(15,27,42,.78);
    backdrop-filter: blur(14px);
  }
  
  .hero-art-panel span {
    display: block;
    margin-bottom: .35rem;
    color: #72d6d2;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  
  .hero-art-panel strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.35;
  }
  
  .hero-eyebrow,
  .section-label,
  .page-hero .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .9rem;
    color: var(--teal);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  
  .hero-eyebrow::before,
  .section-label::before,
  .page-hero .eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
  }
  
  .ts-hero h1 {
    max-width: 760px;
    margin-bottom: 1.45rem;
    color: var(--white);
    font-weight: 800;
  }
  
  .ts-hero h1 em {
    font-style: normal;
    color: #72d6d2;
  }
  
  .ts-hero .lead {
    max-width: 610px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,.74);
    font-size: 1.08rem;
    line-height: 1.75;
  }
  
  .hero-stat-row {
    max-width: 690px;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  
  .hero-stat {
    border-right: 1px solid rgba(255,255,255,.14);
    padding-right: 1.5rem;
  }
  
  .hero-stat:last-child { border-right: 0; }
  
  .hero-stat .num {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .hero-stat .lbl {
    margin-top: 5px;
    color: rgba(255,255,255,.58);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  
  /* ---- Sections ---- */
  .section-pad { padding: 92px 0; }
  .section-pad-sm { padding: 64px 0; }
  
  .section-title { margin-bottom: 1rem; }
  
  .section-subtitle {
    max-width: 560px;
    color: var(--steel);
    font-size: 1rem;
    line-height: 1.75;
  }
  
  .accent-bar {
    width: 44px;
    height: 3px;
    margin: 1rem 0 1.4rem;
    background: var(--teal);
  }
  
  .divider {
    margin: 0;
    border: 0;
    border-top: 1px solid var(--line);
  }
  
  .about-strip {
    background: var(--mist);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  
  .service-card {
    height: 100%;
    padding: 1.65rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(18,25,38,.03);
    transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
  }
  
  .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34,156,152,.38);
    box-shadow: var(--shadow);
  }
  
  .service-card::before { display: none; }
  
  .service-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1.15rem;
    border-radius: var(--radius);
    color: var(--teal);
    background: var(--teal-2);
    font-size: 1.25rem;
  }
  
  .service-card h4 {
    min-height: 2.5em;
    margin-bottom: .65rem;
    font-size: 1.05rem;
  }
  
  .service-card p {
    margin: 0;
    color: var(--steel);
    font-size: .9rem;
    line-height: 1.7;
  }
  
  .service-card a {
    color: var(--teal) !important;
    font-weight: 800;
  }
  
  .geo-band {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background:
      linear-gradient(120deg, rgba(15,27,42,.98), rgba(15,27,42,.88)),
      var(--navy);
  }
  
  .geo-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .45;
  }
  
  .geo-band .container { position: relative; }
  .geo-band .section-label { color: #72d6d2; }
  .geo-band .section-title,
  .geo-band h2 { color: var(--white) !important; }
  .geo-band p { color: rgba(255,255,255,.68) !important; }
  
  .region-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.76);
    font-size: .82rem;
    font-weight: 600;
  }
  
  .region-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
  }
  
  /* ---- Inner pages ---- */
  .page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 78px;
    background:
      linear-gradient(115deg, rgba(15,27,42,.98), rgba(15,27,42,.86)),
      var(--navy);
  }
  
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 62px 62px;
  }
  
  .page-hero-grid { display: none; }
  .page-hero .container { z-index: 2; }
  .page-hero .eyebrow { color: #72d6d2; }
  .page-hero h1 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: clamp(2.1rem, 4vw, 3.35rem);
  }
  .page-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 1.02rem;
  }
  
  .ts-breadcrumb {
    padding: 12px 0;
    background: var(--mist);
    border-bottom: 1px solid var(--line);
  }
  
  .ts-breadcrumb .breadcrumb {
    margin: 0;
    font-size: .78rem;
    font-weight: 600;
  }
  
  .ts-breadcrumb .breadcrumb-item a { color: var(--teal); }
  .ts-breadcrumb .breadcrumb-item.active { color: var(--muted); }
  
  .service-detail,
  .governance-box,
  .contact-info-box,
  .contact-form-wrap {
    border-radius: var(--radius);
  }
  
  .service-detail {
    height: 100%;
    padding: 2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 4px solid var(--teal);
    box-shadow: var(--shadow);
  }
  
  .service-detail .sd-num {
    color: var(--teal-2);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .service-detail h3 { margin: .35rem 0 1rem; }
  .service-detail ul { list-style: none; padding: 0; margin: 0; }
  
  .service-detail ul li {
    display: flex;
    gap: 10px;
    padding: .55rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--steel);
    font-size: .92rem;
    line-height: 1.55;
  }
  
  .service-detail ul li:last-child { border-bottom: 0; }
  .service-detail ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-top: .55rem;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
  }
  
  .governance-box,
  .contact-info-box {
    padding: 2rem;
    background: var(--navy);
    color: rgba(255,255,255,.74);
  }
  
  .governance-box h4,
  .contact-info-box h4 { color: var(--white); margin-bottom: 1.2rem; }
  
  .governance-box ul { list-style: none; padding: 0; margin: 0; }
  
  .governance-box li,
  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.72);
    font-size: .9rem;
  }
  
  .governance-box li:last-child,
  .contact-row:last-child { border-bottom: 0; }
  
  .governance-box i,
  .contact-row i {
    color: #72d6d2;
    flex-shrink: 0;
    margin-top: 3px;
  }
  
  .contact-row a { color: rgba(255,255,255,.8) !important; }
  
  .contact-form-wrap {
    display: block;
    padding: 2rem;
    background: var(--mist);
    border: 1px solid var(--line);
  }
  
  .contact-form-wrap h4 { margin-bottom: .6rem; }
  
  .form-success {
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    border: 1px solid rgba(34,156,152,.28);
    border-radius: var(--radius);
    background: var(--teal-2);
    color: var(--ink);
    font-size: .92rem;
    font-weight: 700;
  }
  
  .form-label {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  
  .form-control,
  .form-select {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font-size: .94rem;
  }
  
  .form-control:focus,
  .form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(34,156,152,.14);
  }
  
  textarea.form-control { min-height: 130px; resize: vertical; }
  
  /* ---- Footer ---- */
  .ts-footer {
    padding: 58px 0 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.68);
  }
  
  .ts-footer .footer-brand { margin-bottom: 1rem; }
  .ts-footer .footer-tagline {
    max-width: 280px;
    color: rgba(255,255,255,.55);
    font-size: .86rem;
  }
  
  .ts-footer h6 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  
  .ts-footer ul { list-style: none; padding: 0; margin: 0; }
  .ts-footer li { margin-bottom: .55rem; }
  .ts-footer a { color: rgba(255,255,255,.58) !important; }
  .ts-footer a:hover { color: var(--white) !important; }
  
  .ts-footer .footer-address,
  .footer-bottom {
    color: rgba(255,255,255,.48);
    font-size: .84rem;
  }
  
  .ts-footer .footer-address i { color: #72d6d2; margin-right: 6px; }
  
  .footer-bottom {
    margin-top: 48px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  
  .footer-registered { color: rgba(255,255,255,.48); }
  
  .fade-up { animation: fadeUp .55s ease both; }
  .fade-up-2 { animation: fadeUp .55s .08s ease both; }
  .fade-up-3 { animation: fadeUp .55s .16s ease both; }
  .fade-up-4 { animation: fadeUp .55s .24s ease both; }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 991px) {
    .ts-nav .navbar-collapse {
      margin-top: 12px;
      padding: 1rem 0;
      border-top: 1px solid var(--line);
      background: var(--paper);
    }
  
    .lang-switch { margin-left: .85rem; }
    .hero-art { margin-top: 1rem; }
  }
  
  @media (max-width: 768px) {
    .section-pad { padding: 66px 0; }
    .section-pad-sm { padding: 52px 0; }
    .ts-hero { min-height: auto; padding: 82px 0 68px; }
    .hero-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding: 0 0 1rem; margin-bottom: 1rem; }
    .hero-stat:last-child { border-bottom: 0; margin-bottom: 0; }
    .btn-ts-primary, .btn-ts-ghost { width: 100%; }
    .contact-form-wrap, .contact-info-box, .governance-box, .service-detail { padding: 1.35rem; }
  }

  /* ============================================================
   Tech Spectrum — Cookie Consent Styles
   Append to style.css (or a dedicated cookies.css if preferred).
   Adapted from Acacia Web. Uses TS CSS variables throughout.
   ============================================================ */

/* ── Banner ────────────────────────────────────────────────── */
#ts-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.08);
  padding: 1.1rem 0;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
#ts-cookie-banner.ts-cb-visible {
  transform: translateY(0);
}
.ts-cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ts-cb-text { flex: 1; min-width: 260px; }
.ts-cb-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--slate-800);
  margin: 0 0 .3rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.ts-cb-title i { color: var(--accent); }
.ts-cb-text p {
  font-size: .83rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.ts-cb-text a {
  color: var(--accent);
  text-decoration: underline;
}
.ts-cb-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* ── Shared button base ─────────────────────────────────────── */
.ts-btn-reject,
.ts-btn-manage,
.ts-btn-accept {
  border: none;
  border-radius: 6px;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
  line-height: 1.4;
}
.ts-btn-reject:hover,
.ts-btn-manage:hover,
.ts-btn-accept:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.ts-btn-reject {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.ts-btn-manage {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.ts-btn-accept {
  background: var(--accent);
  color: #fff;
}

/* ── Modal backdrop + box ───────────────────────────────────── */
#ts-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
#ts-cookie-modal.ts-modal-visible {
  opacity: 1;
  pointer-events: all;
}
.ts-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(2px);
}
.ts-modal-box {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: translateY(12px);
  transition: transform .3s ease;
}
#ts-cookie-modal.ts-modal-visible .ts-modal-box {
  transform: translateY(0);
}
.ts-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.ts-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.ts-modal-title i { color: var(--accent); }
.ts-modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 .25rem;
  transition: color .2s;
}
.ts-modal-close:hover { color: var(--slate-800); }
.ts-modal-body { padding: 1.25rem 1.5rem; }
.ts-modal-intro {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.ts-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.ts-pref-row:last-child { border-bottom: none; }
.ts-pref-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ts-pref-required {
  font-size: .7rem;
  font-weight: 600;
  background: rgba(37,99,235,.1);
  color: var(--accent);
  border-radius: 4px;
  padding: .1rem .45rem;
  letter-spacing: .03em;
}
.ts-pref-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.ts-modal-footer {
  display: flex;
  gap: .6rem;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ── Toggle switch ──────────────────────────────────────────── */
.ts-toggle {
  position: relative;
  display: inline-block;
  width: 42px; height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.ts-toggle input { opacity: 0; width: 0; height: 0; }
.ts-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 99px;
  transition: background .2s;
}
.ts-toggle-track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.ts-toggle input:checked + .ts-toggle-track { background: var(--accent); }
.ts-toggle input:checked + .ts-toggle-track::before { transform: translateX(18px); }
.ts-toggle-disabled { cursor: not-allowed; }
.ts-toggle-disabled .ts-toggle-track { background: var(--accent); opacity: .45; }

/* ── Cookie Settings reopener button ────────────────────────── */
#ts-cookie-reopener {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 9998;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: border-color .2s, color .2s, transform .15s;
}
#ts-cookie-reopener:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
#ts-cookie-reopener i { font-size: .85rem; }

/* ── Prevent scroll when modal open ─────────────────────────── */
body.ts-modal-open { overflow: hidden; }
