/*
 * Copyright (c) 2024 Flerosoft (https://flerosoft.com)
 * Software Name: Cookie Notice Pro - jQuery Plugin
 * Product Page : https://cookienoticepro.flerosoft.com
 * Documentation: https://cookienoticepro.flerosoft.com/docs
 * Description: Cookie Notice Pro, a lightweight jQuery plugin, helps you to comply with GDPR.
Make your own cookie information popup in minutes.
 */

/*********************** Cookie Dialog ***********************/
:root {
  --cookieNoticeProLight: #ffffff;
  --cookieNoticeProDark: #393d4d;
}

@keyframes cookieNoticeProZoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes cookieNoticeProZoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}

#cookieNoticePro * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: 'inherit';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#cookieNoticePro button,
#cookieNoticePro a {
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}
#cookieNoticePro button {
  outline: none;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
#cookieNoticePro strong,
#cookieNoticePro em {
  font-weight: bold;
  font-family: inherit;
}
#cookieNoticePro a:hover {
  text-decoration: none;
  cursor: pointer;
}
#cookieNoticePro a:focus,
#cookieNoticePro input:focus {
  outline: none;
  list-style: none;
}

#cookieNoticePro.light {
  background-color: #ffffff;
  background-color: var(--cookieNoticeProLight);
  color: #393d4d;
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.light p,
#cookieNoticePro.light ul {
  color: #393d4d;
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.light h5 {
  color: var(--cookieNoticeProDark);
}

#cookieNoticePro.light button#cookieReject {
  background: #ffffff;
  background: var(--cookieNoticeProLight);
}

#cookieNoticePro.dark {
  background-color: #393d4d;
  background-color: var(--cookieNoticeProDark);
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}
#cookieNoticePro.dark p,
#cookieNoticePro.dark ul {
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}

#cookieNoticePro.dark h5 {
  color: #ffffff;
  color: var(--cookieNoticeProLight);
}
#cookieNoticePro.dark button#cookieReject {
  background: transparent;
  color: #ffffff;
  color: var(--cookieNoticeProLight);
  border: 1px solid #ffffff;
  border: 1px solid var(--cookieNoticeProLight);
}

#cookieNoticePro {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  font-family: inherit;
  z-index: 999997;
}

#cookieNoticePro #closeIcon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: #bfb9b9;
  overflow: hidden;
  opacity: 0.85;
  z-index: 999999;
  position: absolute;
  top: 4px;
  right: 4px;
}

#cookieNoticePro svg {
  display: block;
}

#cookieNoticePro.display-left {
  left: 30px;
  bottom: 30px;
  max-width: 395px;
}

#cookieNoticePro.display-right {
  right: 30px;
  bottom: 30px;
  max-width: 395px;
}

#cookieNoticePro.display-top {
  top: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
}

#cookieNoticePro.display-bottom {
  bottom: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
}

#cookieNoticePro.display-top .content-wrap,
#cookieNoticePro.display-bottom .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#cookieNoticePro.display-top .msg-wrap,
#cookieNoticePro.display-bottom .msg-wrap {
  max-width: 65%;
  width: 100%;
}

#cookieNoticePro.display-top .msg-wrap,
#cookieNoticePro.display-bottom .msg-wrap {
  margin-bottom: 0;
}

#cookieNoticePro.display-top #cookieSettings,
#cookieNoticePro.display-bottom #cookieSettings {
  margin-bottom: 0;
}

#cookieNoticePro.display-top #cookieTypes,
#cookieNoticePro.display-bottom #cookieTypes {
  margin-top: 20px;
}

#cookieNoticePro .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-weight: bold;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -5px 0 -5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#cookieNoticePro .btn-wrap button {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 7px;
  margin: 0 5px 10px 5px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 130px;
  line-height: 36px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
#cookieNoticePro .btn-wrap button:hover {
  -webkit-transition: -webkit-box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    -webkit-box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: translate3d(0, -1px, 0);
  transform: translate3d(0, -1px, 0);
}

#cookieNoticePro #cookieSettings {
  font-size: 12px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 20px;
}
#cookieNoticePro #cookieSettings svg {
  vertical-align: middle;
  margin-right: 8px;
}

#cookieNoticePro h4 {
  font-family: inherit;
  font-weight: bold;
  font-size: 18px;
}

#cookieNoticePro .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

#cookieNoticePro .title-wrap svg {
  margin-right: 10px;
}

#cookieNoticePro h5 {
  font-family: inherit;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#cookieNoticePro p,
#cookieNoticePro ul {
  font-size: 14px;
  margin-bottom: 20px;
}
#cookieNoticePro p:last-child {
  margin-bottom: 0;
  text-align: left;
}
#cookieNoticePro li {
  width: 49%;
  display: inline-block;
}
#cookieNoticePro a {
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#cookieTypes label {
  text-transform: uppercase;
  font-size: 13px;
}

#cookieNoticePro button:disabled {
  opacity: 0.3;
}
#cookieNoticePro input[type='checkbox'] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  width: 14px;
  height: 14px;
  margin: 4px 10px 0px 0px;
  display: block;
  float: left;
  position: relative;
  outline: none;
  border: none;
}
#cookieNoticePro input[type='checkbox']:checked:after {
  background: #d3d3d3;
  content: '\2714';
  color: #808080;
}

#cookieNoticePro input[type='checkbox']:after {
  content: '';
  vertical-align: middle;
  text-align: center;
  line-height: 13px;
  position: absolute;
  cursor: pointer;
  height: 14px;
  width: 14px;
  left: 0;
  top: 0;
  font-size: 10px;
  background: #d3d3d3;
}

#cookieNoticePro.display-top.full-width-true,
#cookieNoticePro.display-bottom.full-width-true {
  width: 100%;
  max-width: 100%;
  left: auto;
  right: auto;
  bottom: auto;
  top: 0;
  border-radius: 0;
  margin: auto;
}

#cookieNoticePro.display-bottom.full-width-true {
  bottom: 0;
  top: auto;
  -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
}

#cookieNoticePro.display-top.full-width-true .title-wrap,
#cookieNoticePro.display-bottom.full-width-true .title-wrap {
  display: none;
}

#cookieNoticePro.display-top.full-width-true .btn-wrap button,
#cookieNoticePro.display-bottom.full-width-true .btn-wrap button {
  margin-bottom: 10px;
}

#cookieMinimizeIcon {
  position: fixed;
  bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  animation: cookieNoticeProZoomIn 0.2s forwards;
  transition: box-shadow 0.1s ease-in-out;
}

#cookieMinimizeIcon.left {
  left: 20px;
}

#cookieMinimizeIcon.right {
  right: 20px;
}

#cookieMinimizeIcon svg {
  display: block;
}
#cookieMinimizeIcon.zoomIn {
  animation: cookieNoticeProZoomIn 0.2s forwards;
}

#cookieMinimizeIcon.zoomOut {
  animation: cookieNoticeProZoomOut 0.2s forwards;
}

#cookieMinimizeIcon .floating-text {
  position: absolute;
  top: 50%;
  background: rgba(51, 51, 51, 0.5);
  padding: 2px 4px;
  color: #ffffff;
  border-radius: 2px;
  font-family: 'inherit';
  font-size: 12px;
  text-wrap: nowrap;
  display: none;
}
#cookieMinimizeIcon:hover {
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.25);
}

#cookieMinimizeIcon:hover > .floating-text {
  display: block;
}

#cookieMinimizeIcon.left .floating-text {
  right: -10%;
  transform: translate(100%, -50%);
}

#cookieMinimizeIcon.right .floating-text {
  left: -10%;
  transform: translate(-100%, -50%);
}

@media only screen and (max-width: 800px) {
  #cookieNoticePro.display-top,
  #cookieNoticePro.display-bottom {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    top: 0;
    border-radius: 0;
    margin: auto;
  }

  #cookieNoticePro.display-bottom {
    bottom: 0;
    top: auto;
    -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
    box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  }

  #cookieNoticePro.display-top .btn-wrap button,
  #cookieNoticePro.display-bottom .btn-wrap button {
    margin-bottom: 10px;
  }

  #cookieNoticePro.display-top .msg-wrap,
  #cookieNoticePro.display-bottom .msg-wrap {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 600px) {
  #cookieNoticePro.display-left,
  #cookieNoticePro.display-right {
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
    box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  }

  #cookieNoticePro.display-top .content-wrap,
  #cookieNoticePro.display-bottom .content-wrap {
    display: block;
  }
  #cookieNoticePro.display-top .msg-wrap,
  #cookieNoticePro.display-bottom .msg-wrap {
    max-width: 100%;
  }
  #cookieNoticePro.display-top #cookieSettings,
  #cookieNoticePro.display-bottom #cookieSettings {
    margin-bottom: 20px;
  }
}


/* === SwitchCheck Max Sexy Overrides === */

/* === Cookie Notice Pro — SwitchCheck Custom Theme (Max Sexy) ===
   Clean, Apple-like, glassy. Non-invasive: only plugin IDs are targeted.
   Colors adapt via CSS variables. Tune --cnp-primary to match brand.
================================================================== */
:root {
  --cnp-primary: #d11a7d;           /* Brand accent */
  --cnp-bg: #0f1724;                /* Base background (blends with index) */
  --cnp-text: #e5e7eb;              /* Primary text color */
  --cnp-muted: #a3a9b6;             /* Muted text */
  --cnp-card: rgba(20, 26, 38, 0.82); /* Glass card */
  --cnp-border: rgba(255, 255, 255, 0.08);
  --cnp-shadow: 0 10px 40px rgba(0,0,0,.35);
  --cnp-radius: 16px;
  --cnp-radius-lg: 20px;
  --cnp-focus: 0 0 0 3px rgba(209,26,125,.25);
}

@media (prefers-color-scheme: light) {
  :root {
    --cnp-bg: #f6f7fb;
    --cnp-text: #111827;
    --cnp-muted: #6b7280;
    --cnp-card: rgba(255,255,255,0.9);
    --cnp-border: rgba(0,0,0,0.06);
    --cnp-shadow: 0 14px 44px rgba(16,24,40,.12);
  }
}

/* Container */
#cookieNoticePro {
  position: fixed;
  inset: auto 16px 16px 16px; /* bottom spacing */
  z-index: 2147483647;
  font-family: -apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,Inter,Arial,system-ui,sans-serif;
  color: var(--cnp-text);
  display: flex;
  justify-content: center;
  pointer-events: none; /* let clicks only pass through to card */
}

#cookieNoticePro.full-width { inset: auto 0 0 0; }

/* Card */
#cookieNoticePro .cnp-card {
  pointer-events: auto;
  width: min(1100px, 94vw);
  background: var(--cnp-card);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--cnp-border);
  border-radius: var(--cnp-radius-lg);
  box-shadow: var(--cnp-shadow);
  overflow: hidden;
}

/* Layout */
#cookieNoticePro .cnp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 18px;
}
@media (min-width: 720px) {
  #cookieNoticePro .cnp-row { padding: 22px 24px; gap: 24px; }
}

/* Title + Copy */
#cookieNoticePro .cnp-title {
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 1.05rem;
  margin: 0 0 6px 0;
}
#cookieNoticePro .cnp-desc {
  margin: 0;
  line-height: 1.55;
  color: var(--cnp-muted);
  font-size: .95rem;
}

/* Buttons cluster */
#cookieNoticePro .cnp-actions {
  display: grid;
  grid-auto-flow: row;
  gap: 10px;
  align-content: start;
  justify-items: stretch;
  min-width: 220px;
}
@media (min-width: 640px) {
  #cookieNoticePro .cnp-actions { grid-auto-flow: column; grid-auto-columns: 1fr; min-width: 520px; }
}

#cookieAccept, #cookieReject, #cookieSettings, #closeIcon, .cnp-btn {
  appearance: none;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#cookieAccept {
  background: var(--cnp-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(209,26,125,.24);
}
#cookieAccept:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(209,26,125,.30); }
#cookieAccept:active { transform: translateY(0); }
#cookieAccept:focus-visible { box-shadow: 0 8px 22px rgba(209,26,125,.30), var(--cnp-focus); }

#cookieReject, #closeIcon {
  background: transparent;
  border-color: var(--cnp-border);
  color: var(--cnp-text);
}
#cookieReject:hover, #closeIcon:hover { background: rgba(255,255,255,.06); }
#cookieReject:focus-visible, #closeIcon:focus-visible { box-shadow: var(--cnp-focus); }

#cookieSettings {
  background: linear-gradient(135deg, rgba(209,26,125,.12), rgba(209,26,125,.06));
  color: var(--cnp-text);
  border-color: rgba(209,26,125,.25);
}
#cookieSettings:hover { background: linear-gradient(135deg, rgba(209,26,125,.16), rgba(209,26,125,.10)); }
#cookieSettings:focus-visible { box-shadow: var(--cnp-focus); }

/* Preferences panel */
#cookieSettingsPanel, #cookieTypes {
  background: var(--cnp-card);
  border-top: 1px solid var(--cnp-border);
  padding: 14px 18px 18px;
}
#cookieTypes .cnp-type {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--cnp-border);
}
#cookieTypes .cnp-type:last-child { border-bottom: 0; }
#cookieTypes .cnp-type .cnp-type-title { font-weight: 700; }
#cookieTypes .cnp-type .cnp-type-desc { color: var(--cnp-muted); font-size: .92rem; line-height: 1.45; }

/* Checkboxes */
#cookieTypes input[type="checkbox"] {
  width: 18px; height: 18px;
  appearance: none;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 6px;
  background: transparent;
  position: relative;
  transition: border-color .2s ease, background-color .2s ease;
}
#cookieTypes input[type="checkbox"]:checked {
  background: var(--cnp-primary);
  border-color: var(--cnp-primary);
}
#cookieTypes input[type="checkbox"]:checked::after {
  content: "";
  position: absolute; inset: 0;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18"><path d="M4 9l3 3 7-7" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/14px 14px no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18"><path d="M4 9l3 3 7-7" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/14px 14px no-repeat;
  background: #fff;
}

/* Minimize icon (floating) */
#cookieMinimizeIcon {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--cnp-border);
  background: var(--cnp-card);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--cnp-shadow);
  display: grid;
  place-items: center;
  color: var(--cnp-text);
  z-index: 2147483647;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease;
}
#cookieMinimizeIcon:hover { transform: translateY(-1px); }
#cookieMinimizeIcon:active { transform: translateY(0); }
#cookieMinimizeIcon::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--cnp-primary);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24"><path d="M12 2a5 5 0 015 5 5 5 0 01-9.9 1A5 5 0 0112 2zm0 11c-5 0-9 2.239-9 5v1a1 1 0 001 1h16a1 1 0 001-1v-1c0-2.761-4-5-9-5z" fill="white"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24"><path d="M12 2a5 5 0 015 5 5 5 0 01-9.9 1A5 5 0 0112 2zm0 11c-5 0-9 2.239-9 5v1a1 1 0 001 1h16a1 1 0 001-1v-1c0-2.761-4-5-9-5z" fill="white"/></svg>') center/contain no-repeat;
}

/* Links */
#cookieNoticePro a {
  color: color-mix(in oklab, var(--cnp-primary) 80%, #fff 20%);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#cookieNoticePro a:hover { text-decoration-thickness: 2px; }

/* Accessibility */
#cookieNoticePro *:focus-visible {
  outline: none;
  box-shadow: var(--cnp-focus);
  border-radius: 10px;
}



/* === SwitchCheck CSS Optimizations (Accessibility + Polish) ==================
   Goals:
   - Stronger contrast + readable sizing
   - Responsive layout for full-width bottom/top
   - Reduced motion support
   - Tighter buttons and spacing
   - Clear focus styles for keyboard users
============================================================================= */

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  #cookieNoticePro,
  #cookieMinimizeIcon,
  #cookieNoticePro .btn-wrap button {
    animation: none !important;
    transition: none !important;
  }
}

/* Full-width header/footer layout: ensure content is readable and centered */
#cookieNoticePro.display-top.full-width-true,
#cookieNoticePro.display-bottom.full-width-true {
  display: block;
  padding: 0;
}

#cookieNoticePro.display-top.full-width-true .content-wrap,
#cookieNoticePro.display-bottom.full-width-true .content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px clamp(12px, 3vw, 24px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
}

@media (max-width: 720px) {
  #cookieNoticePro.display-top.full-width-true .content-wrap,
  #cookieNoticePro.display-bottom.full-width-true .content-wrap {
    grid-template-columns: 1fr;
  }
}

/* Typography tweaks */
#cookieNoticePro h4 {
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.25;
  letter-spacing: -.01em;
}
#cookieNoticePro p,
#cookieNoticePro ul {
  font-size: clamp(14px, 1.9vw, 15px);
  line-height: 1.55;
}

/* Make action buttons more touch-friendly */
#cookieNoticePro .btn-wrap {
  gap: 10px;
}
#cookieNoticePro .btn-wrap button {
  line-height: 42px;
  font-size: 15px;
  border-radius: 12px;
  padding: 0 14px;
  min-width: 140px;
}

/* Links: keep clear color underlines across themes */
#cookieNoticePro a {
  border-bottom: none;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Focus states for accessibility */
#cookieNoticePro a:focus-visible,
#cookieNoticePro button:focus-visible,
#cookieNoticePro #cookieSettings:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(209,26,125,.28);
  border-radius: 10px;
}

/* Settings trigger alignment */
#cookieNoticePro #cookieSettings {
  letter-spacing: .02em;
  font-weight: 700;
}

/* Checkbox visual clarity */
#cookieTypes input[type='checkbox'] {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}
#cookieTypes label {
  font-weight: 700;
  font-size: 13px;
}

/* Minimize icon tooltip legibility */
#cookieMinimizeIcon .floating-text {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 4px 6px;
  font-size: 12px;
}

/* Ensure cookie banner is always above site headers/overlays */
#cookieNoticePro { z-index: 2147483647 !important; }
#cookieMinimizeIcon { z-index: 2147483647 !important; }
