 :root{
      /* Kolory inspirowane logo (fiolet + odcienie) */
      --brand-900:#3a0c6b;
      --brand-800:#4b1386;
      --brand-700:#5c1aa3;
      --brand-600:#6f22c3;
      --brand-500:#8b2be6;
      --brand-400:#a754ff;

      --ink:#12121a;
      --muted:#5d6070;
      --bg:#ffffff;
      --card:#ffffff;
      --line:rgba(18,18,26,.12);
	--shadow: 0 14px 40px rgba(20, 8, 40, .18);
      --shadow-soft: 0 10px 28px rgba(20, 8, 40, .12);

      --radius-xl: 26px;
      --radius-lg: 18px;
      --radius-md: 14px;

      --max: 1120px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1200px 500px at 80% -10%, rgba(167,84,255,.18), transparent 55%),
        radial-gradient(900px 380px at 15% 10%, rgba(139,43,230,.14), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fbf8ff 30%, #ffffff 100%);
    }

    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; height:auto; display:block; }

    .container{
      width:min(var(--max), calc(100% - 40px));
      margin-inline:auto;
    }

    /* Header */
    .header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid var(--line);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brand img{
      width:56px;
      height:56px;
      object-fit:cover;
      border-radius:14px;
      box-shadow: 0 2px 6px rgba(60, 10, 120, .18);
      border:1px solid rgba(120,60,200,.12);
      background:#fff;
    }
    .brand .name{
      line-height:1.05;
    }
    .brand .name strong{
      display:block;
      font-size:2.02rem;
      letter-spacing:.2px;
	  color: #8b2be6;
    }
    .brand .name span{
      display:block;
      font-size:.84rem;
      color:var(--muted);
    }

    .nav{
      display:flex;
      align-items:center;
      gap:18px;
    }
    .nav a{
      font-weight:600;
      font-size:.92rem;
      color:#2a2a35;
      padding:10px 10px;
      border-radius:12px;
    }
    .nav a:hover{
      background: rgba(139,43,230,.08);
      color: var(--brand-800);
    }

    .actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:999px;
      border:1px solid rgba(120,60,200,.20);
      background:#fff;
      color:var(--brand-800);
      font-weight:700;
      font-size:.95rem;
      box-shadow: 0 2px 6px rgba(60, 10, 120, .10);
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
    .btn.primary{
      background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
      color:#fff;
      border: 1px solid rgba(255,255,255,.25);
      box-shadow: 0 2px 6px rgba(120, 30, 220, .22);
    }
    .btn.primary:hover{ box-shadow: 0 2px 6px rgba(120, 30, 220, .28); }

    .mobile-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(120,60,200,.20);
      background:#fff;
      box-shadow: 0 2px 6px rgba(60, 10, 120, .10);
      align-items:center;
      justify-content:center;
      cursor:pointer;
    }
    .burger{
      width:18px; height:12px; position:relative;
    }
    .burger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: var(--brand-800);
    }
    .burger span:nth-child(1){ top:0; }
    .burger span:nth-child(2){ top:5px; opacity:.9; }
    .burger span:nth-child(3){ bottom:0; opacity:.85; }

    /* Mobile menu panel */
    .mobile-panel{
      display:none;
      border-top:1px solid var(--line);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      padding:10px 0 16px;
    }
    .mobile-panel a{
      display:block;
      padding:12px 12px;
      border-radius:14px;
      font-weight:700;
    }
    .mobile-panel a:hover{
      background: rgba(139,43,230,.08);
      color: var(--brand-800);
    }
    .mobile-actions{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
    }

    /* Hero */
    .hero{
      padding: 56px 0 24px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 28px;
      align-items:center;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      background: rgba(139,43,230,.10);
      border:1px solid rgba(139,43,230,.18);
      color: var(--brand-800);
      font-weight:800;
      letter-spacing:.2px;
      font-size:.92rem;
    }
    .hero h1{
      margin: 14px 0 10px;
      font-size: clamp(2.05rem, 3.2vw, 3.1rem);
      line-height: 1.06;
      letter-spacing: -0.6px;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:1.05rem;
      line-height:1.55;
      max-width: 56ch;
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top: 18px;
    }

    .hero-card{
      border-radius: var(--radius-xl);
      background:
        radial-gradient(900px 380px at 50% 0%, rgba(167,84,255,.28), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
      border: 1px solid rgba(120,60,200,.18);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-card-inner{
      padding: 18px;
    }
    .hero-bottles{
  width:100%;
  aspect-ratio: 1536/1024;     /* pasuje do Twojej grafiki (baner) */
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.45);
  box-shadow: 0 2px 6px rgba(30, 10, 60, .18);
  background: rgba(255,255,255,.55);
}

.hero-bottles img{
  width:100%;
  height:100%;
  object-fit: cover;        /* wypełnia całość, ucina brzegi */
  object-position: center;  /* możesz zmienić np. "center right" */
  padding: 0;               /* usuń padding, bo robi pasy */
  display:block;
}
    .price-badge{
      position:absolute;
      top:16px;
      right:16px;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:4px;
      padding: 12px 14px;
      border-radius: 18px;
      background: linear-gradient(135deg, #fff, rgba(255,255,255,.75));
      border: 1px solid rgba(120,60,200,.18);
      box-shadow: 0 2px 6px rgba(20, 8, 40, .18);
    }
    .price-badge strong{
      font-size: 1.6rem;
      color: var(--brand-800);
      letter-spacing: -0.6px;
    }
    .price-badge span{
      font-size: .86rem;
      color: var(--muted);
      font-weight: 700;
    }

    /* Sections */
    section{
      padding: 28px 0;
    }
    .section-title{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 14px;
      margin-bottom: 14px;
    }
    .section-title h2{
      margin:0;
      font-size: 1.55rem;
      letter-spacing: -0.2px;
    }
    .section-title p{
      margin:0;
      color: var(--muted);
      font-weight: 600;
      font-size: .98rem;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .card{
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: 0 2px 6px rgba(20, 8, 40, .08);
      padding: 16px;
      overflow:hidden;
    }
    .card h3{
      margin: 0 0 8px;
      font-size: 1.1rem;
      letter-spacing: -0.2px;
    }
    .card p{
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: .98rem;
    }
    .icon{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(139,43,230,.10);
      border: 1px solid rgba(139,43,230,.18);
      display:grid;
      place-items:center;
      margin-bottom: 10px;
      color: var(--brand-800);
      font-weight: 900;
      letter-spacing: .5px;
    }

    .bullets{
      margin: 10px 0 0;
      padding-left: 18px;
      color: var(--muted);
    }
    .bullets li{ margin: 6px 0; }

    .brand-chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 10px;
    }
    .chip{
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(139,43,230,.08);
      border: 1px solid rgba(139,43,230,.14);
      font-weight: 800;
      color: var(--brand-800);
      font-size: .92rem;
      letter-spacing: .1px;
    }

    /* Map placeholder */
    .map-box{
      border-radius: var(--radius-xl);
      border: 1px dashed rgba(120,60,200,.35);
      background: linear-gradient(180deg, rgba(167,84,255,.10), rgba(255,255,255,.72));
      padding: 18px;
      min-height: 240px;
      display:flex;
      flex-direction:column;
      gap: 10px;
      justify-content:center;
      align-items:flex-start;
    }
    .map-box strong{
      color: var(--brand-800);
      font-size: 1.05rem;
    }
    .map-box p{
      margin:0;
      color: var(--muted);
      max-width: 70ch;
      line-height: 1.55;
    }
    .hint{
      font-size: .9rem;
      color: rgba(93,96,112,.95);
      font-weight: 600;
    }
    .kbd{
      display:inline-block;
      padding: 2px 8px;
      border-radius: 10px;
      border: 1px solid rgba(120,60,200,.18);
      background: rgba(255,255,255,.8);
      font-weight: 800;
      color: var(--brand-800);
    }

    /* Contact */
    .contact{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:stretch;
    }
    .contact-card{
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(92,26,163,.95), rgba(139,43,230,.92));
      color:#fff;
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 2px 6px rgba(90, 20, 170, .30);
      padding: 18px;
      position:relative;
      overflow:hidden;
    }
    .contact-card:before{
      content:"";
      position:absolute;
      inset:-80px -80px auto auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.38), transparent 60%);
      transform: rotate(18deg);
    }
    .contact-card h3{
      margin: 0 0 10px;
      font-size: 1.25rem;
      letter-spacing: -0.2px;
    }
    .contact-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-top: 12px;
    }
    .contact-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.20);
      font-weight: 800;
    }
    .contact-pill small{
      opacity:.9;
      font-weight:700;
    }
    .contact-pill strong{
      letter-spacing:.2px;
      font-size: 1.02rem;
    }

    /* Footer */
    footer{
      padding: 22px 0 40px;
      color: var(--muted);
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,.55);
    }
    .footer-grid{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
    }
    .footer-grid .mini{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight: 700;
    }
    .footer-grid .mini img{
      width:36px; height:36px;
      border-radius:12px;
      border: 1px solid rgba(120,60,200,.16);
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .contact{ grid-template-columns: 1fr; }
    }
    @media (max-width: 860px){
      .nav, .actions{ display:none; }
      .mobile-toggle{ display:inline-flex; }
      .mobile-panel{ display:none; }
      .grid-3{ grid-template-columns: 1fr; }
      .grid-2{ grid-template-columns: 1fr; }
      .brand{ min-width: unset; }
    }
    @media (prefers-reduced-motion: reduce){
      html{ scroll-behavior:auto; }
      .btn:hover{ transform:none; }
    }
	/* --- FIX: responsywna mapa --- */
.map-box{
  align-items: stretch;     /* zamiast flex-start, żeby iframe brał 100% */
  justify-content: flex-start; /* żeby nie centrować iframe pionowo */
  padding: 12px;            /* trochę ciaśniej pod mapę */
}

.map-frame{
  width: 100%;
  border: 0;
  border-radius: 18px;
  display: block;
  /* Desktop: 600px, ale ogranicz do wysokości ekranu */
  height: min(800px, 75vh);
  background: #fff;
}

/* Telefon: daj mapie więcej miejsca, ale nie „zabijaj” strony */
@media (max-width: 860px){
  .map-frame{
    height: 70vh; /* lepiej niż sztywne 600px */
    min-height: 420px;
  }
}
.offer-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.offer-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(18,18,26,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(20, 8, 40, .08);
}

.offer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.offer-kicker{
  font-weight:800;
  font-size:.9rem;
  color: var(--brand-800);
  background: rgba(139,43,230,.08);
  border: 1px solid rgba(139,43,230,.12);
  padding:8px 10px;
  border-radius:999px;
}

.offer-badge{
  font-weight:800;
  font-size:.88rem;
  color: rgba(18,18,26,.75);
  padding:8px 10px;
  border-radius:999px;
  border: 1px solid rgba(18,18,26,.12);
  background: rgba(255,255,255,.8);
}

.offer-card h3{
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.2px;
}

.offer-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.offer-card--accent{
  border-color: rgba(139,43,230,.22);
  box-shadow: 0 16px 34px rgba(120, 30, 220, .16);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(251,248,255,.92));
}

.offer-price{
  display:flex;
  align-items:baseline;
  gap:6px;
  font-weight:900;
  color: var(--brand-800);
}
.offer-price span{ font-size: 2.1rem; letter-spacing:-1px; }
.offer-price small{ font-size: 1rem; opacity:.9; }

@media (max-width: 980px){
  .offer-grid{ grid-template-columns: 1fr; }
}
.social{
  display:flex;
  align-items:center;
  gap:10px;
}

.social-btn{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(120,60,200,.20);
  background:#fff;
  box-shadow: 0 2px 6px rgba(60, 10, 120, .10);
  color: var(--brand-800);
}

.social-btn svg{
  width:22px;
  height:22px;
  fill: currentColor;
}

.social-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  background: rgba(139,43,230,.06);
}

.mobile-social{
  display:flex;
  gap:10px;
  padding: 12px 0 0;
}

.footer-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footer-links{
  font-weight:700;
}

.footer-links a{
  color: var(--brand-800);
}

.footer-links .dot{
  opacity:.75;
  margin: 0 8px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 28px;
  height: 28px;
  color: rgba(75, 19, 134, .85);
}

.footer-social-link svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social-link:hover{
  color: var(--brand-800);
  transform: translateY(-1px);
}

/* na małych ekranach niech stopka układa się ładnie */
@media (max-width: 520px){
  .footer-right{
    justify-content:flex-start;
    gap:10px;
  }
  .footer-links .dot{ margin: 0 6px; }
}

/* --- Kontakt z formularzem --- */
.contact--form{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}

.contact-form-card{
  border-radius: var(--radius-xl);
}

.muted{ color: var(--muted); }

.contact-form{ margin-top: 10px; }

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.field{ display:flex; flex-direction:column; gap:8px; }

.field--full{ grid-column: 1 / -1; }

.field label{
  font-weight:800;
  font-size:.92rem;
  color: rgba(18,18,26,.82);
}

.field input,
.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,26,.14);
  background: rgba(255,255,255,.9);
  font: inherit;
  outline: none;
  box-shadow: 0 6px 16px rgba(20, 8, 40, .06);
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(139,43,230,.35);
  box-shadow: 0 10px 22px rgba(120, 30, 220, .10);
}

.form-bottom{
  margin-top: 12px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-weight:700;
  color: rgba(18,18,26,.75);
  max-width: 62ch;
}

.consent input{ margin-top: 3px; }

.form-note{
  margin-top: 10px;
  font-size: .92rem;
}

.form-msg{
  margin-top: 10px;
  font-weight: 800;
  color: rgba(18,18,26,.75);
}

/* Honeypot - ukryte, ale dostępne dla botów */
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* Responsywność */
@media (max-width: 980px){
.contact--form{
  display:grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap:14px;
  align-items:stretch;
}
  
  .form-grid{ grid-template-columns: 1fr; }
}

.contact.contact--form{
  grid-template-columns: 1.45fr 0.55fr !important;
}

/* === Kontakt: jedna kolumna + fioletowe tło === */
.contact.contact--form.contact--single{
  display:block;          /* kasujemy grid */
}

.contact-form-wrap{
  border-radius: var(--radius-xl);
  padding: 22px;
  background: linear-gradient(135deg, rgba(92,26,163,.96), rgba(139,43,230,.92));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 50px rgba(90, 20, 170, .22);
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* delikatny "glow" */
.contact-form-wrap:before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 60%);
  transform: rotate(18deg);
  pointer-events:none;
}

.contact-form-wrap h3{
  margin:0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.2px;
  position:relative;
}

.contact-lead{
  margin:0 0 14px;
  opacity:.95;
  line-height:1.55;
  position:relative;
}

.contact-lead a{
  color:#fff;
  font-weight:900;
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

/* Pola na fioletowym tle */
.contact-form-wrap .field label{
  color: rgba(255,255,255,.92);
  font-weight:800;
}

.contact-form-wrap .field input,
.contact-form-wrap .field textarea{
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  box-shadow: none;
}

.contact-form-wrap .field input::placeholder,
.contact-form-wrap .field textarea::placeholder{
  color: rgba(255,255,255,.70);
}

.contact-form-wrap .field input:focus,
.contact-form-wrap .field textarea:focus{
  outline:none;
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}

.consent--on-purple{
  color: rgba(255,255,255,.92);
}

.contact-form-wrap .form-msg{
  color: rgba(255,255,255,.92);
}


@media (max-width: 980px){
  .contact-form-wrap{ padding:18px; }
}
.cf-turnstile{
  margin-top: 12px;
}


.field .error-text{
  margin-top: 6px;
  font-size: .9rem;
  font-weight: 800;
  color: rgba(255,255,255,.95);
  opacity: .95;
}

.field.is-error input,
.field.is-error textarea{
  border-color: rgba(255, 120, 120, .85) !important;
  box-shadow: 0 0 0 4px rgba(255, 80, 80, .18) !important;
}

.form-msg.is-error{ color: rgba(255,255,255,.95); }
.form-msg.is-ok{ color: rgba(255,255,255,.95); }
/* Cookie banner */
.cookie-banner{
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
}
.cookie-inner{
  max-width: 1120px;
  margin: 0 auto;
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(18,18,26,.14);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(20,8,40,.18);
}
.cookie-title{ font-weight: 900; letter-spacing:-.2px; }
.cookie-desc{ color: var(--muted); font-weight: 600; font-size:.95rem; line-height:1.4; margin-top:4px; }
.cookie-desc a{ color: var(--brand-800); font-weight: 900; text-decoration:none; }
.cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end; }
.cookie-btn{ padding: 10px 14px; box-shadow: none; }

@media (max-width: 860px){
  .cookie-inner{ flex-direction:column; }
  .cookie-actions{ width:100%; justify-content:flex-start; }
}

/* Cookie modal */
.cookie-modal{
  position: fixed; inset: 0;
  z-index: 10000;
  background: rgba(18,18,26,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.cookie-modal-card{
  width: min(780px, 100%);
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(18,18,26,.14);
  box-shadow: 0 28px 70px rgba(20,8,40,.28);
  overflow:hidden;
}
.cookie-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(18,18,26,.10);
}
.cookie-x{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,26,.12);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor:pointer;
}
.cookie-list{ padding: 8px 0; }
.cookie-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18,18,26,.08);
}
.cookie-item-title{ font-weight: 900; }
.cookie-item-desc{ color: var(--muted); font-weight: 600; font-size:.95rem; margin-top:4px; }
.cookie-tag{
  font-weight: 900;
  color: var(--brand-800);
  background: rgba(139,43,230,.08);
  border: 1px solid rgba(139,43,230,.14);
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.cookie-actions-bottom{
  padding: 14px 16px;
  justify-content:flex-end;
}

/* Toggle switch */
.cookie-toggle{ cursor:pointer; }
.cookie-toggle input{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  pointer-events:auto;
}
.cookie-toggle .switch{
  width: 52px; height: 30px;
  border-radius: 999px;
  background: rgba(18,18,26,.18);
  border: 1px solid rgba(18,18,26,.18);
  position: relative;
  flex: 0 0 auto;
  display:inline-block;
}
.cookie-toggle .switch:before{
  content:"";
  position:absolute;
  width: 24px; height: 24px;
  border-radius: 999px;
  background:#fff;
  top: 2px; left: 2px;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  transition: transform .18s ease;
}
.cookie-toggle input:checked + .switch{
  background: rgba(139,43,230,.55);
  border-color: rgba(139,43,230,.35);
}
.cookie-toggle input:checked + .switch:before{
  transform: translateX(22px);
}

/* Cookie banner + modal (CMP-lite) */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
}

.cookie-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(20, 10, 40, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cookie-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.cookie-desc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,0.86);
}

.cookie-desc a,
.cookie-links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

/* Modal */
.cookie-modal[hidden] { display: none; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.cookie-modal-card {
  position: relative;
  max-width: 720px;
  width: calc(100% - 24px);
  margin: 50px auto 0 auto;
  border-radius: 18px;
  background: #120a26;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}

.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.cookie-x {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.cookie-list {
  padding: 12px 16px 6px 16px;
}

.cookie-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cookie-item-title { color: #fff; font-weight: 700; font-size: 14px; }
.cookie-item-desc  { color: rgba(255,255,255,0.80); font-size: 13px; margin-top: 4px; line-height: 1.35; }

.cookie-fixed {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px 16px;
  justify-content: flex-end;
}

.cookie-links {
  padding: 10px 0 12px 0;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

@media (max-width: 720px) {
  .cookie-modal-actions { flex-direction: column; }
  .cookie-modal-actions .btn { width: 100%; }
  .cookie-modal-card { margin-top: 18px; }
}

/* Switch */
.cookie-switch { position: relative; display: inline-block; width: 46px; height: 28px; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  transition: 0.2s;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  height: 22px; width: 22px;
  left: 3px; top: 2px;
  background: #fff;
  border-radius: 999px;
  transition: 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: rgba(139, 43, 230, 0.55);
  border-color: rgba(139, 43, 230, 0.65);
}
.cookie-switch input:checked + .cookie-slider:before { transform: translateX(18px); }