/* ============================================================
   BDSMLust Child Theme — bl-components.css
   Dark gold theme — subspaceland-inspired
   ============================================================ */

:root {
  /* Subspaceland warm palette */
  --bl-bg:        #080604;
  --bl-surface:   #110d08;
  --bl-surface2:  #18130a;
  --bl-surface3:  #201810;
  --bl-gold:      #C8A96E;
  --bl-gold2:     #8B6530;
  --bl-gold-dim:  rgba(200,169,110,0.45);
  --bl-border:    rgba(200,169,110,0.11);
  --bl-border2:   rgba(200,169,110,0.22);
  --bl-text:      #E8DCC8;
  --bl-text-dim:  #9A8F72;
  --bl-muted:     #4A3828;
  --bl-radius:    8px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.bl-footer {
  background:
    radial-gradient(ellipse at bottom center, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0a0806 0%, #060504 100%);
  border-top: 1px solid var(--bl-border);
  padding: 40px 20px 24px;
  margin-top: 32px;
  color: var(--bl-text-dim);
}
.bl-footer-inner { max-width: 1180px; margin: 0 auto; }
.bl-footer-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-bottom: 28px; }

.bl-footer-col h3 {
  color: var(--bl-gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
  line-height: 1;
  opacity: 0.8;
}
.bl-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bl-footer-col li { margin: 0 0 9px; line-height: 1.3; }
.bl-footer-col a {
  color: var(--bl-muted) !important;
  font-size: 12px;
  text-decoration: none !important;
  transition: color 0.2s, text-shadow 0.2s;
  letter-spacing: 0.01em;
}
.bl-footer-col a:hover {
  color: var(--bl-gold) !important;
  text-shadow: 0 0 12px rgba(201,168,76,0.3);
}

.bl-footer-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bl-border), var(--bl-border2), var(--bl-border), transparent);
  margin: 0 0 20px;
}

.bl-footer-text {
  text-align: center;
  color: var(--bl-muted);
  font-size: 11px;
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto 14px;
  opacity: 0.7;
}
.bl-footer-copy {
  text-align: center;
  color: var(--bl-muted);
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.5;
}
.bl-footer-copy a {
  color: var(--bl-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s, text-shadow 0.2s;
}
.bl-footer-copy a:hover {
  color: var(--bl-gold) !important;
  text-shadow: 0 0 10px rgba(201,168,76,0.25);
  opacity: 1;
}

@media (max-width: 900px) { .bl-footer-grid { grid-template-columns: repeat(2,1fr); gap: 22px 18px; } }
@media (max-width: 520px) {
  .bl-footer { padding: 28px 16px 20px; }
  .bl-footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .bl-footer-col h3 { font-size: 9px; }
  .bl-footer-col a  { font-size: 11px; }
  .bl-footer-text   { font-size: 10px; }
}

/* ── BACK TO TOP ── */
#back-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity .3s, visibility .3s !important;
  background: rgba(201,168,76,0.1) !important;
  border: 1px solid var(--bl-border2) !important;
  color: var(--bl-gold) !important;
}
#back-to-top.bl-visible { opacity: 1 !important; visibility: visible !important; }
#back-to-top:hover {
  background: rgba(201,168,76,0.18) !important;
  box-shadow: 0 0 16px rgba(201,168,76,0.15) !important;
}

/* ══════════════════════════════════════════════════════════
   KINK CHANNELS + POPULAR STUDIOS WIDGET
   ══════════════════════════════════════════════════════════ */
.sb {
  font-family: 'DM Sans', system-ui, sans-serif;
  width: 100%;
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: 12px;
  overflow: hidden;
}

/* Tabs */
.sb-tabs {
  display: flex;
  border-bottom: 1px solid var(--bl-border);
  background: var(--bl-bg);
}
.sb-tab {
  flex: 1;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bl-muted);
  transition: color .15s, border-color .15s, background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  bottom: -1px;
}
.sb-tab.on {
  color: var(--bl-gold);
  border-bottom-color: var(--bl-gold);
  background: var(--bl-surface);
}
.sb-tab:hover:not(.on) {
  color: var(--bl-text-dim);
  background: rgba(201,168,76,0.03);
}

.sb-body    { padding: 16px; }
.sb-panel   { display: none; }
.sb-panel.on { display: block; }

.sb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--bl-border);
  background: var(--bl-bg);
}
.sb-footer-info { font-size: 10px; color: var(--bl-muted); }
.sb-footer-link {
  font-size: 10px;
  font-weight: 600;
  color: var(--bl-gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color .15s, text-shadow .15s;
  text-transform: uppercase;
}
.sb-footer-link:hover {
  color: var(--bl-text);
  text-shadow: 0 0 12px rgba(201,168,76,0.4);
}

/* Kink arrows */
.kink-wrap { position: relative; }
.kink-arrows { display: flex; gap: 6px; justify-content: flex-end; margin-bottom: 10px; }
.karr {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--bl-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--bl-muted);
  transition: all .15s;
  font-size: 18px; line-height: 1;
}
.karr:hover {
  border-color: var(--bl-gold-dim);
  color: var(--bl-gold);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 8px rgba(201,168,76,0.1);
}

/* Kink track */
.ktrack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px)/5);
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.ktrack::-webkit-scrollbar { display: none; }

.kcard {
  display: block;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bl-surface2);
  border: 1px solid var(--bl-border);
  scroll-snap-align: start;
  text-decoration: none;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.kcard:hover {
  border-color: var(--bl-gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}
.kcard img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s;
}
.kcard:hover img { transform: scale(1.07); }
.kcard-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent 55%);
  pointer-events: none;
}
.kcard-label {
  position: absolute;
  left: 8px; right: 8px; bottom: 7px;
  font-size: 11px; font-weight: 600;
  color: var(--bl-text); line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.9);
}

/* Studios grid */
.sgrid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 8px;
}
.scard {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bl-surface2);
  border: 1px solid var(--bl-border);
  text-decoration: none;
  color: var(--bl-text);
  display: block;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.scard:hover {
  border-color: var(--bl-gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.1);
}
.simg { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.simg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s;
}
.scard:hover img { transform: scale(1.07); }
.sname {
  padding: 6px 7px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bl-muted);
  text-align: center;
  line-height: 1.2;
  transition: color .15s;
}
.scard:hover .sname { color: var(--bl-gold); }

@media (max-width: 1024px) { .sgrid { grid-template-columns: repeat(4,1fr); } .ktrack { grid-auto-columns: calc((100% - 24px)/3); } }
@media (max-width: 600px)  { .sgrid { grid-template-columns: repeat(3,1fr); } .ktrack { grid-auto-columns: calc((100% - 16px)/2); } .sb-body { padding: 12px; } }
@media (max-width: 420px)  { .sgrid { grid-template-columns: repeat(2,1fr); } .ktrack { grid-auto-columns: 75%; } }

/* ══════════════════════════════════════════════════════════
   TAG CLOUD
   ══════════════════════════════════════════════════════════ */
.bltc {
  font-family: 'DM Sans', system-ui, sans-serif;
  width: 100%;
  background: var(--bl-surface);
  border: 1px solid var(--bl-border);
  border-radius: 12px;
  overflow: hidden;
}
.bltc-top {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bl-border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bltc-groups   { display: flex; flex-direction: column; }
.bltc-grp + .bltc-grp { border-top: 1px solid rgba(201,168,76,0.05); }

.bltc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 10px;
  transition: background .15s;
}
.bltc-trigger:hover { background: rgba(201,168,76,0.03); }
.bltc-trigger[aria-expanded="true"] { background: rgba(201,168,76,0.04); }

.bltc-grp-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bl-muted);
  transition: color .15s;
  white-space: nowrap;
}
.bltc-trigger:hover .bltc-grp-name,
.bltc-trigger[aria-expanded="true"] .bltc-grp-name { color: var(--bl-gold); }

.bltc-preview { display: flex; gap: 5px; flex: 1; overflow: hidden; }
.bltc-prev-tag {
  font-size: 10px;
  color: var(--bl-muted);
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--bl-border);
  white-space: nowrap;
  transition: opacity .15s;
  opacity: 0.6;
}
.bltc-trigger[aria-expanded="true"] .bltc-prev-tag { opacity: 0; }

.bltc-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 4px;
  background: rgba(201,168,76,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .25s;
}
.bltc-trigger[aria-expanded="true"] .bltc-arrow {
  transform: rotate(180deg);
  background: rgba(201,168,76,0.1);
}
.bltc-arrow svg {
  width: 10px; height: 10px;
  fill: none;
  stroke: var(--bl-muted);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bltc-trigger[aria-expanded="true"] .bltc-arrow svg { stroke: var(--bl-gold); }
.bltc-trigger:hover .bltc-arrow svg { stroke: var(--bl-gold); }

.bltc-panel { display: block !important; max-height: 0; overflow: hidden; transition: max-height .3s cubic-bezier(.4,0,.2,1); }
.bltc-panel[aria-hidden="false"] { max-height: 600px; }
.bltc-panel-inner  { overflow: hidden; min-height: 0; }
.bltc-panel-tags   { padding: 4px 16px 14px; display: flex; flex-wrap: wrap; gap: 6px; }

.bltc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--bl-border);
  background: var(--bl-bg);
}
.bltc-footer-info { font-size: 10px; color: var(--bl-muted); }
.bltc-footer-link {
  font-size: 10px;
  font-weight: 600;
  color: var(--bl-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color .15s, text-shadow .15s;
}
.bltc-footer-link:hover {
  color: var(--bl-text);
  text-shadow: 0 0 12px rgba(201,168,76,0.4);
}

/* Tag buttons */
.bt {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'DM Sans', system-ui, sans-serif;
  white-space: nowrap;
  line-height: 1;
  transition: background .14s, border-color .14s, color .14s, transform .18s, box-shadow .14s;
}
.bt:hover { transform: translateY(-1px); text-decoration: none; }

.bt-a {
  padding: 6px 13px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--bl-gold);
}
.bt-a:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--bl-gold-dim);
  color: var(--bl-gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.12);
}
.bt-b {
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 500;
  background: var(--bl-surface2);
  border: 1px solid var(--bl-border);
  color: var(--bl-text-dim);
}
.bt-b:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
  color: var(--bl-gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.08);
}
.bt-c {
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 500;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.06);
  color: var(--bl-muted);
}
.bt-c:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.15);
  color: var(--bl-text-dim);
}
@media (max-width: 600px) { .bltc-preview { display: none; } }

/* ══════════════════════════════════════════════════════════
   PERFORMER SLIDER — card style, nije okruglo
   ══════════════════════════════════════════════════════════ */
.bdsmlust-simple-actors-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}

/* Header bar */
.bdsmlust-simple-actors-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 10px;
  margin-bottom: 2px;
}
.bdsmlust-simple-actors-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bl-muted);
}
.bdsmlust-simple-all-link {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bl-gold);
  text-decoration: none !important;
  transition: color .15s, text-shadow .15s;
}
.bdsmlust-simple-all-link:hover {
  color: var(--bl-text);
  text-shadow: 0 0 10px rgba(201,168,76,0.35);
}

/* Slider track */
.bdsmlust-simple-actors-slider {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
  width: 100%;
}
.bdsmlust-simple-actors-slider::-webkit-scrollbar { display: none; }

/* Card — portrait format */
.bdsmlust-simple-actor-item {
  flex: 0 0 100px !important;
  min-width: 100px !important;
  width: 100px !important;
  max-width: 100px !important;
  display: block !important;
  text-decoration: none !important;
  color: inherit;
  overflow: visible !important;
}

.bdsmlust-simple-actor-thumb {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 120px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: var(--bl-surface2) !important;
  border: 1px solid var(--bl-border) !important;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: none;
}
.bdsmlust-simple-actor-item:hover .bdsmlust-simple-actor-thumb {
  border-color: var(--bl-gold-dim) !important;
  box-shadow: 0 4px 16px rgba(201,168,76,0.12) !important;
}

/* Gradient overlay na thumb */
.bdsmlust-simple-actor-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 8px;
  opacity: 0;
  transition: opacity .2s;
}
.bdsmlust-simple-actor-item:hover .bdsmlust-simple-actor-thumb::after { opacity: 1; }

.bdsmlust-simple-actor-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  transition: transform .25s;
}
.bdsmlust-simple-actor-item:hover .bdsmlust-simple-actor-thumb img { transform: scale(1.05); }

/* Initials fallback */
.bdsmlust-simple-actor-thumb.no-image {
  background: linear-gradient(135deg, var(--bl-surface2) 0%, var(--bl-surface3) 100%) !important;
}
.bdsmlust-simple-actor-thumb.no-image span,
.bdsmlust-simple-actor-thumb-initials {
  color: var(--bl-gold);
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Name */
.bdsmlust-simple-actor-name {
  display: block;
  width: 100%;
  max-width: 100px;
  margin-top: 7px;
  color: var(--bl-muted);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  transition: color .15s;
  letter-spacing: 0.02em;
}
.bdsmlust-simple-actor-item:hover .bdsmlust-simple-actor-name { color: var(--bl-gold); }

/* Arrows */
.bdsmlust-simple-actors-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--bl-border);
  border-radius: 6px;
  background: rgba(201,168,76,0.06);
  color: var(--bl-muted);
  cursor: pointer;
  transition: all .2s;
  font-size: 16px;
  line-height: 1;
}
.bdsmlust-simple-actors-arrow:hover {
  border-color: var(--bl-gold-dim);
  color: var(--bl-gold);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 8px rgba(201,168,76,0.1);
}

@media (max-width: 768px) {
  .bdsmlust-simple-actor-item {
    flex: 0 0 80px !important;
    min-width: 80px !important;
    width: 80px !important;
    max-width: 80px !important;
  }
  .bdsmlust-simple-actor-thumb { height: 96px !important; }
  .bdsmlust-simple-actor-name  { max-width: 80px; font-size: 9px; }
  .bdsmlust-simple-actors-arrow { display: none; }
}

/* ══════════════════════════════════════════════════════════
   SECTION TABS — Latest Videos / Popular Videos
   ══════════════════════════════════════════════════════════ */
.bl-section-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--bl-border);
  margin-bottom: 16px;
  gap: 0;
}
.bl-section-tab {
  padding: 10px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bl-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: color .15s, border-color .15s;
  position: relative;
  bottom: -1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.bl-section-tab:hover { color: var(--bl-gold); }
.bl-section-tab.bl-tab-active {
  color: var(--bl-gold);
  border-bottom-color: var(--bl-gold);
}
.bl-tab-count {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 99px;
  background: rgba(201,168,76,0.1);
  color: var(--bl-gold);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════
   GRID FOOTER — Load more + see all new pages
   ══════════════════════════════════════════════════════════ */
#blg-grid-footer.blg-grid-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 28px auto 32px !important;
  padding: 0 16px !important;
  clear: both !important;
  box-sizing: border-box !important;
  flex-wrap: nowrap !important;
}
#blg-grid-footer .blg-btn-scroll {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  height: 44px !important;
  padding: 0 22px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  background: rgba(201,168,76,0.07) !important;
  background-color: rgba(201,168,76,0.07) !important;
  color: rgba(201,168,76,0.8) !important;
  border: 1px solid rgba(201,168,76,0.18) !important;
  cursor: pointer !important;
  transition: all .18s ease !important;
  font-family: inherit !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  flex: none !important;
  min-width: unset !important;
  max-width: unset !important;
}
#blg-grid-footer .blg-btn-scroll .bl-arrow-circle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(201,168,76,0.25) !important;
  color: rgba(201,168,76,0.5) !important;
  font-size: 12px !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
  background: transparent !important;
}
#blg-grid-footer .blg-btn-scroll:hover:not(:disabled) {
  background: rgba(201,168,76,0.13) !important;
  background-color: rgba(201,168,76,0.13) !important;
  border-color: rgba(201,168,76,0.35) !important;
  color: var(--bl-gold) !important;
  box-shadow: 0 0 16px rgba(201,168,76,0.08) !important;
}
#blg-grid-footer .blg-btn-scroll:hover:not(:disabled) .bl-arrow-circle {
  border-color: rgba(201,168,76,0.45) !important;
  color: var(--bl-gold) !important;
}
#blg-grid-footer .blg-btn-scroll:disabled {
  opacity: .3 !important;
  cursor: default !important;
}
#blg-grid-footer .blg-divider {
  font-size: 12px !important;
  color: rgba(201,168,76,0.1) !important;
  flex-shrink: 0 !important;
  user-select: none !important;
}
#blg-grid-footer .blg-btn-viewall {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: var(--bl-muted) !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color .15s ease, text-shadow .15s !important;
  font-family: inherit !important;
  white-space: nowrap !important;
  letter-spacing: 0.02em !important;
  flex: none !important;
  min-width: unset !important;
  max-width: unset !important;
  text-transform: none !important;
  border-radius: 0 !important;
  height: auto !important;
}
#blg-grid-footer .blg-btn-viewall .bl-va-arrow {
  font-size: 11px !important;
  color: var(--bl-muted) !important;
  transition: color .15s ease, transform .15s ease !important;
  display: inline-block !important;
}
#blg-grid-footer .blg-btn-viewall:hover {
  color: var(--bl-gold) !important;
  text-shadow: 0 0 10px rgba(201,168,76,0.25) !important;
  background: transparent !important;
}
#blg-grid-footer .blg-btn-viewall:hover .bl-va-arrow {
  color: var(--bl-gold) !important;
  transform: translateX(2px) !important;
}
@media (max-width: 640px) {
  #blg-grid-footer.blg-grid-footer { gap: 14px !important; margin: 20px auto 28px !important; }
  #blg-grid-footer .blg-btn-scroll { height: 40px !important; padding: 0 16px !important; font-size: 11px !important; }
}


	/* ══════════════════════════════════════════════════════════
   BDSMLUST — FOOTER GOLD DARK THEME
   Targets: .bl-footer, .bl-footer-inner, .bl-footer-grid,
            .bl-footer-col, .bl-footer-text, .bl-footer-copy
   Dodaj u bl-components.css ili Additional CSS
   ══════════════════════════════════════════════════════════ */

/* ── WRAPPER ── */
.bl-footer {
  background:
    radial-gradient(ellipse at bottom center, rgba(201,168,76,0.05) 0%, transparent 65%),
    linear-gradient(180deg, #0c0a06 0%, #060504 100%) !important;
  border-top: 1px solid rgba(201,168,76,0.14) !important;
  box-shadow: inset 0 1px 0 rgba(201,168,76,0.06) !important;
  padding: 44px 24px 28px !important;
  margin-top: 32px !important;
  color: #4a4030 !important;
}

.bl-footer-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* ── GRID ── */
.bl-footer-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px 24px !important;
  margin-bottom: 0 !important;
}

/* ── COL HEADINGS ── */
.bl-footer-col h3 {
  font-size: 9px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.22em !important;
  color: rgba(201,168,76,0.55) !important;
  margin: 0 0 14px !important;
  line-height: 1 !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

/* ── LINKS ── */
.bl-footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.bl-footer-col li {
  margin: 0 0 9px !important;
  line-height: 1.3 !important;
}
.bl-footer-col a {
  font-size: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: rgba(74,64,48,0.75) !important;
  text-decoration: none !important;
  letter-spacing: 0.01em !important;
  transition: color 0.2s ease, text-shadow 0.2s ease !important;
}
.bl-footer-col a:hover {
  color: #C9A84C !important;
  text-shadow: 0 0 14px rgba(201,168,76,0.35) !important;
  text-decoration: none !important;
}

/* ── DIVIDER prije teksta ── */
.bl-footer-text {
  border-top: 1px solid rgba(201,168,76,0.1) !important;
  margin-top: 28px !important;
  padding-top: 20px !important;
  text-align: center !important;
  font-size: 11px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: rgba(74,64,48,0.45) !important;
  line-height: 1.65 !important;
  letter-spacing: 0.01em !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── COPYRIGHT ── */
.bl-footer-copy {
  text-align: center !important;
  font-size: 11px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: rgba(74,64,48,0.35) !important;
  margin-top: 12px !important;
  line-height: 1.6 !important;
}
.bl-footer-copy a {
  color: rgba(74,64,48,0.35) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, text-shadow 0.2s ease !important;
}
.bl-footer-copy a:hover {
  color: #C9A84C !important;
  text-shadow: 0 0 10px rgba(201,168,76,0.28) !important;
}

/* ── BACK TO TOP ── */
#back-to-top {
  background: rgba(201,168,76,0.08) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  color: rgba(201,168,76,0.6) !important;
  transition: all 0.2s ease !important;
}
#back-to-top:hover {
  background: rgba(201,168,76,0.16) !important;
  border-color: rgba(201,168,76,0.4) !important;
  color: #C9A84C !important;
  box-shadow: 0 0 16px rgba(201,168,76,0.15) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bl-footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px 18px !important;
  }
  .bl-footer { padding: 36px 18px 24px !important; }
}
@media (max-width: 520px) {
  .bl-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
  }
  .bl-footer { padding: 28px 16px 20px !important; }
  .bl-footer-col h3 { font-size: 8px !important; letter-spacing: 0.16em !important; }
  .bl-footer-col a  { font-size: 11px !important; }
  .bl-footer-text   { font-size: 10px !important; }
  .bl-footer-copy   { font-size: 10px !important; }
}
  button#blg-scroll-more {
    width: 80% !important;
    max-width: 240px !important;
    justify-content: center !important;
  }
  #blg-grid-footer .blg-btn-viewall {
    font-size: 11px !important;
  }
}

