:root{
  --bc-green: #567235;
  --bc-green-dark: #304124;

  --bc-soft: #e8efe2;
  --bc-border: rgba(17,24,39,.10);
  --bc-text: #0b1220;
  --bc-muted: rgba(17,24,39,.62);

  --bc-radius: 22px;
  --bc-radius-lg: 28px;

  --bc-shadow: 0 18px 50px rgba(0,0,0,.10);
  --bc-shadow-soft: 0 10px 30px rgba(0,0,0,.08);

  --bc-pad-1: clamp(14px, 1.2vw, 18px);
  --bc-pad-2: clamp(18px, 1.6vw, 24px);
  --bc-pad-3: clamp(22px, 2.0vw, 30px);
  --bc-pad-4: clamp(28px, 2.6vw, 40px);

  --bc-neon: rgba(86,114,53,.55);
  --bc-neon-soft: rgba(86,114,53,.18);
  --bc-neon-dark: rgba(48,65,36,.55);

  /* ✅ services spacing controls */
  --bc-services-gap-x: clamp(26px, 3.2vw, 56px);
  --bc-services-gap-y: clamp(26px, 3.2vh, 26px);
}

html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ✅ Dynamic anchor offset (sticky header + Bootstrap py-5) */
:root{
  /* fallback dok JS ne postavi stvarnu visinu headera */
  --bc-scroll-offset: 96px;

  /* mali razmak ispod sticky headera */
  --bc-anchor-gap: 10px;

  /* Bootstrap py-5 = 3rem padding-top (da naslov ne bude “predaleko” ispod) */
  --bc-section-pad-top: 3rem;
}

/* da browser anchor scroll ne “sakrije” sadržaj pod sticky header
   + kompenzuje py-5 da naslov bude tik ispod headera */
html{
  scroll-padding-top: calc(
    var(--bc-scroll-offset) - var(--bc-section-pad-top) + var(--bc-anchor-gap) + env(safe-area-inset-top)
  );
}

/* ciljamo konkretno sekcije na koje skačeš (ne dupliramo offset) */
#services,
#contact{
  scroll-margin-top: 0 !important;
}


body{
  color: var(--bc-text);
  background: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.bc-page{
  background:
    radial-gradient(900px 600px at 18% 8%, var(--bc-neon-soft) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(900px 600px at 82% 12%, rgba(17,24,39,.06) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfb 55%, #ffffff 100%);
  position: relative;
  overflow-x: hidden;
}

body.bc-page::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 30% 0%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    radial-gradient(900px 650px at 70% 8%, rgba(255,255,255,.35), rgba(255,255,255,0) 62%),
    repeating-linear-gradient(90deg, rgba(17,24,39,.035) 0 1px, rgba(255,255,255,0) 1px 56px),
    repeating-linear-gradient(0deg, rgba(17,24,39,.03) 0 1px, rgba(255,255,255,0) 1px 56px);
  opacity: .28;
  mix-blend-mode: multiply;
  transform: translateZ(0);
}

.bc-header .container,
main .container,
footer .container{
  padding-left: max(var(--bs-gutter-x, .75rem), env(safe-area-inset-left));
  padding-right: max(var(--bs-gutter-x, .75rem), env(safe-area-inset-right));
}

/* Header */
.bc-header{
  border-bottom: 1px solid var(--bc-border);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

/* ✅ FIX: stabilan brand layout (responsive), bez "guranja" teksta */
.bc-brand{
  min-width: 0;
}
.bc-brand-text{
  min-width: 0;
}

/* ✅ FIX: logo više nije skaliran transformom + nema padding-right koji pravi ogroman razmak */
.site-logo{
  height: clamp(52px, 4.2vw, 70px);
  width: auto;
  max-width: min(220px, 44vw);
  display: block;
  object-fit: contain;

  transform: none;
  transform-origin: initial;
  padding-right: 0;
}

.bc-lang-btn{
  border-width: 2px;
  padding: .45rem .75rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Buttons */
.btn-success{
  background-color: var(--bc-green) !important;
  border-color: var(--bc-green) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.10), 0 0 0 1px rgba(255,255,255,.35) inset;
}
.btn-success:hover{
  background-color: var(--bc-green-dark) !important;
  border-color: var(--bc-green-dark) !important;
  box-shadow: 0 16px 36px rgba(0,0,0,.12), 0 0 0 1px rgba(255,255,255,.40) inset, 0 0 22px var(--bc-neon);
  transform: translateY(-1px);
}

.btn-outline-success{
  color: var(--bc-green) !important;
  border-color: var(--bc-green) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.55) inset;
}
.btn-outline-success:hover{
  background-color: var(--bc-green) !important;
  border-color: var(--bc-green) !important;
  color:#fff !important;
  box-shadow: 0 0 22px var(--bc-neon);
}

/* HERO */
.bc-hero{
  position: relative;
  isolation: isolate;
  min-height: min(640px, 100svh);
  padding: clamp(120px, 10vh, 160px) 0 clamp(90px, 7vh, 120px);
  background-size: cover;

  /* ✅ UPDATE: pomjeri kadriranje da desna strana (džamija) bude vidljivija na desktopu */
  background-position: 72% center;

  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(17,24,39,.06);
}

.bc-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 420px at 18% 24%, var(--bc-neon) 0%, rgba(255,255,255,0) 60%),
    /* ✅ UPDATE: malo blaži tamni sloj da se pozadina više vidi */
    radial-gradient(800px 520px at 62% 30%, rgba(17,24,39,.12) 0%, rgba(255,255,255,0) 62%),
    linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,0));

  /* ✅ UPDATE: manje ukupne tamnoće */
  opacity: .45;

  z-index: 0;
}

.bc-hero-overlay{
  position:absolute;
  inset:0;

  /* ✅ UPDATE: jači fokus na lijevoj strani (tekst), a desno puno prozirnije (džamija se vidi) */
  background: linear-gradient(
    90deg,
    rgba(11,18,32,.80) 0%,
    rgba(11,18,32,.58) 34%,
    rgba(11,18,32,.28) 62%,
    rgba(11,18,32,.12) 100%
  );

  z-index: 1;
}

.bc-hero .container{ z-index: 2; }

.bc-hero-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin:0 0 .85rem;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);

  /* ✅ UPDATE: skuplji naslov (manje prekriva pozadinu) */
  max-width: clamp(520px, 46vw, 760px);
}

.bc-hero-lead{
  color: rgba(255,255,255,.90);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);

  /* ✅ UPDATE: skuplji tekst (manje prelazi udesno) */
  max-width: clamp(520px, 46vw, 760px);

  line-height: 1.75;
  margin:0;
  text-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.bc-hero-btn{
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.bc-hero-btn-outline{
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.55);
  color:#fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.bc-hero-btn-outline:hover{
  border-color:#fff;
  color:#fff;
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 24px rgba(255,255,255,.18), 0 0 28px var(--bc-neon);
  transform: translateY(-1px);
}

/* Headings */
.bc-h2{
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.9rem, 2.5vw, 2.75rem);
}
.bc-h5{
  font-weight: 900;
  letter-spacing: -0.02em;
}
.bc-section-title{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.65rem;
}

.text-muted{ color: var(--bc-muted) !important; }

.bc-underline{
  height: 5px;
  width: 170px;
  background: linear-gradient(90deg, var(--bc-green), rgba(255,255,255,0));
  border-radius: 999px;
  margin: 12px 0 18px;
  box-shadow: 0 0 22px var(--bc-neon-soft);
}
.bc-underline-light{
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,0));
  box-shadow: none;
}

/* SERVICES cards */
.bc-service{
  align-items: flex-start;
  gap: 18px !important;
  padding: var(--bc-pad-3);
  border-radius: var(--bc-radius-lg);
  border: 1px solid rgba(17,24,39,.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.70)),
    radial-gradient(900px 420px at 10% 0%, var(--bc-neon-soft) 0%, rgba(255,255,255,0) 65%);
  box-shadow: var(--bc-shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bc-service:hover{
  transform: translateY(-3px);
  border-color: rgba(86,114,53,.35);
  box-shadow: 0 22px 60px rgba(0,0,0,.12), 0 0 26px var(--bc-neon-soft);
}

.bc-icon-circle{
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.55)),
    radial-gradient(circle at 65% 55%, var(--bc-neon-soft), rgba(255,255,255,0) 62%);
  color: var(--bc-green-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(48,65,36,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.10), 0 0 22px var(--bc-neon-soft);
  flex: 0 0 auto;
  margin-top: 2px;
}

.bc-service p{
  line-height: 1.8;
  margin-bottom: 0;
}

/* ✅ Jednake visine/širine u services gridu */
#services .bc-services-grid > [class*="col-"]{
  display: flex;
}
#services .bc-services-grid .bc-service{
  flex: 1 1 auto;
  width: 100%;
}

/* ✅ 2 kolone ostaju (col-lg-6), razmak ide preko Bootstrap gutera */
#services .bc-services-grid{
  --bs-gutter-x: var(--bc-services-gap-x);
  --bs-gutter-y: var(--bc-services-gap-y);
}

/* ✅ “Sva 4 boxa kao najduži” (desktop): min-height */
@media (min-width: 992px){
  #services .bc-services-grid .bc-service{
    min-height: 370px;
  }
}

/* Cards */
.bc-card{
  border: 1px solid rgba(17,24,39,.10) !important;
  border-radius: var(--bc-radius-lg) !important;
  background: rgba(255,255,255,.80);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: var(--bc-shadow);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.bc-card:hover{
  transform: translateY(-2px);
  border-color: rgba(86,114,53,.30) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.14), 0 0 26px var(--bc-neon-soft);
}

/* Trust box */
.bc-trust-box{
  background:
    radial-gradient(1200px 520px at 25% 0%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, var(--bc-green) 0%, var(--bc-green-dark) 100%);
  border-radius: var(--bc-radius-lg);
  padding: var(--bc-pad-4);
  box-shadow: 0 22px 60px rgba(0,0,0,.14), 0 0 28px var(--bc-neon-soft);
  border: 1px solid rgba(255,255,255,.12);
}

/* Forms */
.form-control, .form-select{
  border-radius: 16px;
  border-color: rgba(17,24,39,.14);
  padding: 12px 14px;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(86,114,53,.55);
  box-shadow: 0 0 0 5px var(--bc-neon-soft);
}

.bc-submit-btn{
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* Contact image */
.bc-circle-photo{
  width: 340px;
  height: 340px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.12), 0 0 24px var(--bc-neon-soft);
  background:#fff;
}
.bc-circle-photo img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Info cards */
.bc-info-card{
  text-align:center;
  padding: var(--bc-pad-3);
}
.bc-info-icon{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.92), rgba(255,255,255,.62)),
    radial-gradient(circle at 70% 60%, var(--bc-neon-soft), rgba(255,255,255,0) 62%);
  color: var(--bc-green-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 14px;
  border: 1px solid rgba(48,65,36,.18);
  box-shadow: 0 12px 34px rgba(0,0,0,.10), 0 0 18px var(--bc-neon-soft);
}

.bc-link{
  color: var(--bc-green-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(48,65,36,.25);
}
.bc-link:hover{
  color: var(--bc-green-dark);
  border-bottom-color: rgba(48,65,36,.65);
  text-shadow: 0 0 18px var(--bc-neon-soft);
}

/* Footer */
footer{
  border-top: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Responsive */
@media (max-width: 991.98px){
  .bc-hero{
    padding: 110px 0 80px;
    min-height: min(560px, 100svh);

    /* ✅ UPDATE: na tablet/mob vrati centar da ne “gura” kadar */
    background-position: center;
  }

  /* ✅ UPDATE: vertikalni overlay na manjim ekranima (čitljivo, a i dalje se vidi pozadina) */
  .bc-hero-overlay{
    background: linear-gradient(
      180deg,
      rgba(11,18,32,.78) 0%,
      rgba(11,18,32,.55) 58%,
      rgba(11,18,32,.35) 100%
    );
  }

  /* ✅ UPDATE: na manjim ekranima pusti tekst da koristi širinu (da ne izgleda “stisnuto”) */
  .bc-hero-title,
  .bc-hero-lead{
    max-width: 100%;
  }

  .bc-circle-photo{
    width: 280px;
    height: 280px;
    margin-inline: auto;
  }
  .bc-service{
    padding: var(--bc-pad-2);
  }

  /* ✅ MOB: services ikone na sredinu + tekst centar (sklad) */
  #services .bc-service{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px !important;
  }
  #services .bc-service-body{
    width: 100%;
    text-align: center;
  }
  #services .bc-icon-circle{
    margin-top: 0;
  }
}

@media (max-width: 575.98px){
  .site-logo{
    height: 50px;
    max-width: min(190px, 52vw);
  }

  .bc-hero-btn{ width: 100%; justify-content: center; margin-bottom: 1rem; }

  /* ✅ MOB: services ikone veće i baš centrirane */
  #services .bc-icon-circle{
    width: 78px;
    height: 78px;
  }
  #services .bc-icon-circle svg{
    width: 32px;
    height: 32px;
  }

  /* ✅ MOB: info kartice (Adresa/Telefon/Email) centriraj i vertikalno */
  .bc-info-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--bc-pad-2);
    min-height: 170px; /* daje “Apple” balans */
  }
  .bc-info-icon{
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
  }
  .bc-info-icon svg{
    width: 30px;
    height: 30px;
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  .bc-service, .bc-card, .btn, .bc-hero-btn{ transition: none !important; }
}

/* ✅ FORCE Bootstrap 5 vertical gutter (neki reset ti ubija margin-top na .row > *) */
#services .bc-services-grid.row{
  margin-top: calc(-1 * var(--bs-gutter-y)) !important;
}
#services .bc-services-grid.row > *{
  margin-top: var(--bs-gutter-y) !important;
}

.text-white-80{
  color: rgba(255,255,255,.8) !important;
}

/* =========================
   GDPR Cookie Consent UI
   (FIX: nema display:none konflikta)
   ========================= */

/* Hidden atribut mora uvijek pobijediti */
.bc-cookie-banner[hidden]{
  display:none !important;
}

.bc-cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  display: block; /* bitno: ne smije biti none */
}

.bc-cookie-inner{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
}

.bc-cookie-title{
  font-weight:700;
  margin-bottom:4px;
}

.bc-cookie-body{
  font-size:14px;
  color:rgba(0,0,0,.70);
  max-width:780px;
}

.bc-cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

@media (min-width: 992px){
  .bc-cookie-banner{ left:24px; right:24px; bottom:24px; }
  .bc-cookie-inner{ align-items:center; }
}

/* ================================
   Disable text selection globally
   (keep inputs/textarea selectable)
   ================================ */

.bc-page,
.bc-page * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* ukloni "text" cursor po defaultu */
  cursor: default;
}

/* Dozvoli selekciju i "text cursor" tamo gdje treba */
input,
textarea,
select,
button,
[contenteditable="true"],
[contenteditable=""],
.allow-select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;

  cursor: text;
}

/* Linkovi i klikabilne stvari neka zadrže pointer */
a,
button,
.bc-lang-btn,
.btn {
  cursor: pointer;
}


/* ============================================
   COOKIE CONSENT STYLES
   ============================================ */

/* Banner */
.bc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 10000;
  padding: 15px 0;
  font-family: inherit;
}

.bc-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bc-cookie-text {
  flex: 1;
  min-width: 250px;
}

.bc-cookie-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
  font-size: 1.1rem;
}

.bc-cookie-body {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.bc-cookie-settings {
  margin-top: 5px;
}

.bc-cookie-settings-link {
  font-size: 0.85rem;
  color: #dc3545;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.bc-cookie-settings-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.bc-cookie-reject-icon {
  font-weight: bold;
  font-size: 1rem;
}

.bc-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.bc-cookie-btn {
  min-width: 120px;
}

/* Modal */
.bc-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bc-cookie-modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: bc-cookie-modal-fade 0.3s ease;
}

@keyframes bc-cookie-modal-fade {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bc-cookie-modal-header {
  padding: 20px 24px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bc-cookie-modal-title {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
}

.bc-cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.bc-cookie-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.bc-cookie-modal-body {
  padding: 24px;
}

.bc-cookie-setting {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.bc-cookie-setting:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.bc-cookie-setting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bc-cookie-setting-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-cookie-setting-label {
  flex: 1;
}

.bc-cookie-setting-required {
  font-size: 0.85rem;
  color: #666;
  font-weight: normal;
}

.bc-cookie-setting-desc {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Toggle Switch */
.bc-cookie-setting-toggle {
  position: relative;
  display: inline-block;
}

.bc-cookie-setting-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.bc-cookie-toggle-label {
  display: block;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 34px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.bc-cookie-toggle-label:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 2px;
  bottom: 2px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

input:checked + .bc-cookie-toggle-label {
  background: #28a745;
}

input:checked + .bc-cookie-toggle-label:before {
  transform: translateX(24px);
}

.bc-cookie-setting-disabled .bc-cookie-toggle-label {
  background: #6c757d;
  cursor: not-allowed;
}

.bc-cookie-setting-disabled input:checked + .bc-cookie-toggle-label {
  background: #6c757d;
}

.bc-cookie-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.bc-cookie-modal-btn {
  min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bc-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .bc-cookie-text {
    min-width: auto;
  }
  
  .bc-cookie-actions {
    justify-content: center;
    width: 100%;
  }
  
  .bc-cookie-btn {
    flex: 1;
    min-width: auto;
    max-width: 180px;
  }
  
  .bc-cookie-modal {
    padding: 10px;
  }
  
  .bc-cookie-modal-content {
    max-height: 95vh;
  }
  
  .bc-cookie-modal-header {
    padding: 15px 20px 10px;
  }
  
  .bc-cookie-modal-body {
    padding: 20px;
  }
  
  .bc-cookie-modal-footer {
    padding: 15px 20px;
    justify-content: center;
  }
  
  .bc-cookie-modal-btn {
    flex: 1;
    min-width: auto;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .bc-cookie-banner {
    padding: 12px 0;
  }
  
  .bc-cookie-title {
    font-size: 1rem;
  }
  
  .bc-cookie-body {
    font-size: 0.9rem;
  }
  
  .bc-cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .bc-cookie-btn {
    width: 100%;
    max-width: 100%;
  }
  
  .bc-cookie-modal-footer {
    flex-direction: column;
  }
  
  .bc-cookie-modal-btn {
    width: 100%;
    max-width: 100%;
  }
}
