:root {
  --dcci-purple: #8e44ad;
  --dcci-deep-purple: #5f2a75;
  --dcci-pink: #e91e63;
  --dcci-indigo: #3f51b5;
  --dcci-green: #1f8f4f;
  --dcci-teal: #138c91;
  --dcci-yellow: #b97800;
  --dcci-blue: #1769aa;
  --dcci-ink: #1c2833;
  --dcci-muted: #34495e;
  --dcci-shell: rgba(236, 240, 241, 0.96);
  --dcci-panel: rgba(250, 251, 252, 0.97);
  --dcci-line: rgba(52, 73, 94, 0.22);
  --dcci-shadow: 0 24px 70px rgba(28, 40, 51, 0.22);
  --dcci-radius: 22px;
}

.dcci-stand-app,
.dcci-stand-app * {
  box-sizing: border-box;
}

.dcci-stand-app {
  color: var(--dcci-ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 20px 0 34px;
}

.dcci-stand-app button,
.dcci-stand-app a {
  font: inherit;
}

.dcci-stand-app button:focus-visible,
.dcci-stand-app a:focus-visible,
.dcci-stand-app [tabindex]:focus-visible {
  outline: 4px solid rgba(142, 68, 173, 0.45);
  outline-offset: 4px;
}

.dcci-stand-header {
  text-align: center;
  margin-bottom: 22px;
}

.dcci-stand-logo {
  width: min(240px, 58vw);
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.dcci-stand-eyebrow {
  margin: 0 0 8px;
  color: var(--dcci-deep-purple);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dcci-stand-heading {
  margin: 0;
  color: var(--dcci-ink);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.dcci-stand-subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--dcci-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.dcci-stand-shell {
  position: relative;
  overflow: hidden;
  background: var(--dcci-shell);
  border: 1px solid var(--dcci-line);
  border-radius: var(--dcci-radius);
  box-shadow: var(--dcci-shadow);
}

.dcci-stand-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(180deg, var(--dcci-purple), var(--dcci-pink), var(--dcci-indigo), #c75b12, #006b73);
  z-index: 2;
}

.dcci-stand-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  min-height: 690px;
}

.dcci-stand-stage {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 690px;
  padding: 82px 26px 44px 40px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.24) 42%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(250, 251, 252, 0.76));
  perspective: 1200px;
}

.dcci-stand-help {
  position: absolute;
  top: 22px;
  left: 42px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--dcci-muted);
  font-size: 0.95rem;
  line-height: 1.35;
  z-index: 8;
}

.dcci-stand-help strong {
  color: var(--dcci-deep-purple);
}

.dcci-stand-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.dcci-stand-icon {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--dcci-purple), var(--dcci-deep-purple));
  box-shadow: 0 12px 26px rgba(95, 42, 117, 0.28);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
}

.dcci-stand-zone {
  position: relative;
  width: min(680px, 96%);
  aspect-ratio: 1 / 0.95;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  cursor: grab;
}

.dcci-stand-zone:active {
  cursor: grabbing;
}

.dcci-stand-rotator {
  position: relative;
  width: min(520px, 84vw);
  transform-style: preserve-3d;
  transform: rotateX(-4deg) rotateY(var(--rotation, 0deg));
  transition: transform 620ms cubic-bezier(.2, .72, .2, 1);
  filter: drop-shadow(0 28px 30px rgba(28, 40, 51, 0.2));
}

.dcci-stand-asset {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

.dcci-stand-plant {
  position: absolute;
  right: clamp(0px, 3vw, 44px);
  bottom: 22px;
  width: clamp(112px, 20vw, 180px);
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 16px 18px rgba(28, 40, 51, 0.18));
  pointer-events: none;
}

.dcci-stand-leaflets {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.dcci-leaflet-slot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(154px, 28vw);
  min-height: min(190px, 38vw);
  border: 0;
  border-radius: 16px;
  background: transparent;
  transform: translate(-50%, -50%) rotateY(var(--angle)) translateZ(min(282px, 36vw));
  transform-style: preserve-3d;
  cursor: pointer;
  padding: 0;
}

.dcci-leaflet-slot[aria-current="true"] {
  filter: drop-shadow(0 20px 22px rgba(28, 40, 51, 0.3));
}

.dcci-leaflet-cover {
  position: relative;
  display: flex;
  min-height: inherit;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8), 0 12px 24px rgba(28,40,51,0.22);
  backface-visibility: hidden;
}

.dcci-leaflet-cover::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--dcci-purple), var(--dcci-pink), var(--dcci-indigo), #c75b12, #006b73);
  z-index: 2;
}

.dcci-leaflet-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dcci-cover-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 17px 16px 24px;
  text-align: left;
  background: var(--cover-bg, linear-gradient(150deg, rgba(255,255,255,0.96), rgba(234,223,242,0.88)));
}

.dcci-leaflet-cover.has-image .dcci-cover-inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.76));
}

.dcci-cover-kicker,
.dcci-cover-tag {
  color: rgba(28, 40, 51, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dcci-cover-title {
  display: block;
  margin: 10px 0 0;
  color: var(--dcci-ink);
  font-size: clamp(0.98rem, 2vw, 1.22rem);
  font-weight: 900;
  line-height: 1.05;
}

.dcci-cover-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.dcci-cover-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(28,40,51,0.15);
}

.dcci-cover-lines span:nth-child(2) { width: 74%; background: rgba(95,42,117,0.28); }
.dcci-cover-lines span:nth-child(3) { width: 48%; background: rgba(233,30,99,0.24); }

.dcci-cover-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.dcci-cover-badge {
  min-width: 48px;
  height: 48px;
  border-radius: 18px 18px 18px 5px;
  padding: 0 8px;
  background: rgba(255,255,255,0.74);
  display: inline-grid;
  place-items: center;
  color: var(--dcci-deep-purple);
  font-size: 1.32rem;
  font-weight: 900;
}

.dcci-stand-panel {
  border-left: 1px solid var(--dcci-line);
  padding: 30px 24px;
  background: rgba(250, 251, 252, 0.84);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dcci-stand-card {
  background: var(--dcci-panel);
  border: 1px solid var(--dcci-line);
  border-radius: 18px;
  padding: 18px;
}

.dcci-stand-card h3 {
  margin: 0 0 10px;
  color: var(--dcci-deep-purple);
  font-size: 1.18rem;
  line-height: 1.2;
}

.dcci-stand-card p,
.dcci-stand-card li {
  color: var(--dcci-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.dcci-selected-title {
  display: block;
  margin: 8px 0 10px;
  color: var(--dcci-ink);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.04;
}

.dcci-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dcci-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(142, 68, 173, 0.12);
  color: var(--dcci-deep-purple);
  font-size: 0.82rem;
  font-weight: 800;
}

.dcci-primary,
.dcci-secondary {
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.dcci-primary {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--dcci-purple), var(--dcci-deep-purple));
  box-shadow: 0 14px 28px rgba(95, 42, 117, 0.28);
}

.dcci-secondary {
  border: 1px solid var(--dcci-line);
  background: rgba(255,255,255,0.86);
  color: var(--dcci-deep-purple);
}

.dcci-thumb-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.dcci-thumb-button {
  min-height: 50px;
  border: 1px solid var(--dcci-line);
  border-radius: 12px;
  background: rgba(255,255,255,0.82);
  color: var(--dcci-ink);
  font-weight: 800;
  cursor: pointer;
}

.dcci-thumb-button[aria-current="true"] {
  border-color: rgba(142,68,173,0.85);
  box-shadow: inset 0 0 0 2px rgba(142,68,173,0.24);
}

.dcci-progress {
  width: 100%;
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(52,73,94,0.12);
  overflow: hidden;
}

.dcci-progress span {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dcci-purple), var(--dcci-pink), var(--dcci-indigo), #c75b12, #006b73);
}

.dcci-status {
  min-height: 1.4em;
  color: var(--dcci-deep-purple);
  font-weight: 800;
  font-size: 0.92rem;
}

.dcci-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(28,40,51,0.52);
}

.dcci-modal-backdrop[hidden] { display: none; }

.dcci-modal {
  width: min(820px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  background: rgba(250,251,252,0.99);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 26px 80px rgba(0,0,0,0.34);
}

.dcci-modal-cover {
  padding: 26px;
  background: linear-gradient(135deg, rgba(142,68,173,0.2), rgba(255,255,255,0.96));
  border-radius: 22px 22px 0 0;
}

.dcci-modal-cover span {
  color: var(--dcci-deep-purple);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dcci-modal-cover h3 {
  margin: 8px 0 0;
  color: var(--dcci-ink);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.dcci-modal-body { padding: 24px 26px 28px; }
.dcci-modal-body p { color: var(--dcci-muted); line-height: 1.58; }

.dcci-modal-image-wrap {
  margin: 18px 0;
  border: 1px solid var(--dcci-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.dcci-modal-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.dcci-modal-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.dcci-modal-fact {
  min-height: 108px;
  border-radius: 16px;
  padding: 14px;
  color: var(--dcci-ink);
  background: rgba(236,240,241,0.84);
  border: 1px solid var(--dcci-line);
  font-weight: 800;
  line-height: 1.25;
}

.dcci-modal-html {
  color: var(--dcci-ink);
}

.dcci-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

.dcci-colour-purple { --cover-bg: linear-gradient(150deg, #fdfefe, #eadff2 52%, #d9f0e2); }
.dcci-colour-green { --cover-bg: linear-gradient(150deg, #fdfefe, #e2f2e9 52%, #f9e0ec); }
.dcci-colour-pink { --cover-bg: linear-gradient(150deg, #fdfefe, #f9ddeb 52%, #e8edf9); }
.dcci-colour-indigo { --cover-bg: linear-gradient(150deg, #fdfefe, #dde5fb 52%, #dff2e7); }
.dcci-colour-teal { --cover-bg: linear-gradient(150deg, #fdfefe, #d9f1f2 52%, #eadff2); }
.dcci-colour-yellow { --cover-bg: linear-gradient(150deg, #fdfefe, #ffe8a8 52%, #e2f2e9); }
.dcci-colour-blue { --cover-bg: linear-gradient(150deg, #fdfefe, #dbeeff 52%, #eadff2); }

@media (prefers-reduced-motion: reduce) {
  .dcci-stand-app *, .dcci-stand-app *::before, .dcci-stand-app *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 960px) {
  .dcci-stand-workspace { grid-template-columns: 1fr; }
  .dcci-stand-stage { min-height: 620px; padding: 96px 18px 34px 26px; }
  .dcci-stand-panel { border-left: 0; border-top: 1px solid var(--dcci-line); }
  .dcci-stand-help { left: 28px; flex-direction: column; align-items: flex-start; }
  .dcci-stand-plant { width: 120px; right: 8px; bottom: 12px; }
}

@media (max-width: 640px) {
  .dcci-stand-stage { padding: 130px 12px 32px 20px; min-height: 560px; }
  .dcci-stand-zone { width: 100%; aspect-ratio: 1 / 1.12; }
  .dcci-stand-rotator { width: min(330px, 86vw); }
  .dcci-leaflet-slot {
    width: min(118px, 35vw);
    min-height: min(154px, 45vw);
    transform: translate(-50%, -50%) rotateY(var(--angle)) translateZ(min(198px, 42vw));
  }
  .dcci-stand-plant { width: 94px; opacity: 0.95; }
  .dcci-thumb-list, .dcci-modal-facts { grid-template-columns: 1fr; }
  .dcci-modal-actions { flex-direction: column; }
  .dcci-primary, .dcci-secondary { width: 100%; }
}

/* v1.1 side-browsing leaflet mapping: four clickable resources per visible stand side. */
.dcci-stand-rotator {
  width: min(520px, 84vw);
  transform: rotateX(-3deg) rotateY(var(--rotation, 0deg));
}

.dcci-stand-leaflets {
  pointer-events: none;
}

.dcci-leaflet-slot {
  pointer-events: auto;
  width: 30.5%;
  min-height: 0;
  height: 13.8%;
  transform: none;
  border-radius: 9px;
  z-index: 4;
  transition: transform 180ms ease, filter 180ms ease;
}

.dcci-leaflet-slot:hover,
.dcci-leaflet-slot:focus-visible {
  transform: translateY(-2px) scale(1.025);
}

.dcci-leaflet-slot[aria-current="true"] {
  filter: drop-shadow(0 9px 12px rgba(28, 40, 51, 0.38));
}

.dcci-slot-0 { left: 64.2%; top: 21.2%; }
.dcci-slot-1 { left: 64.2%; top: 40.9%; }
.dcci-slot-2 { left: 64.2%; top: 60.4%; }
.dcci-slot-3 { left: 64.2%; top: 79.6%; }

.dcci-leaflet-cover {
  min-height: 100%;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  transform: perspective(320px) rotateY(-7deg) rotateZ(-1.5deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72), 0 5px 10px rgba(28,40,51,0.25);
}

.dcci-leaflet-cover::before {
  width: 5px;
}

.dcci-cover-inner {
  min-height: 100%;
  padding: 7px 8px 7px 12px;
}

.dcci-cover-kicker,
.dcci-cover-tag {
  font-size: clamp(0.42rem, 1vw, 0.58rem);
  line-height: 1;
}

.dcci-cover-title {
  margin-top: 4px;
  font-size: clamp(0.56rem, 1.18vw, 0.84rem);
  line-height: 1.02;
}

.dcci-cover-lines {
  gap: 4px;
  margin-top: 7px;
}

.dcci-cover-lines span {
  height: 4px;
}

.dcci-cover-badge {
  min-width: 26px;
  height: 24px;
  border-radius: 9px 9px 9px 3px;
  padding: 0 5px;
  font-size: clamp(0.62rem, 1.4vw, 0.86rem);
}

.dcci-thumb-button {
  display: grid;
  gap: 2px;
  align-content: center;
}

.dcci-thumb-button span {
  color: var(--dcci-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.dcci-leaflet-slot.is-empty {
  opacity: 0.42;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .dcci-stand-rotator { width: min(330px, 86vw); }
  .dcci-leaflet-slot {
    width: 30.5%;
    min-height: 0;
    height: 13.8%;
    transform: none;
  }
  .dcci-leaflet-slot:hover,
  .dcci-leaflet-slot:focus-visible { transform: translateY(-1px) scale(1.02); }
  .dcci-cover-inner { padding: 5px 6px 5px 9px; }
  .dcci-cover-lines { display: none; }
  .dcci-cover-footer { display: none; }
}

/* v1.2 larger stand and card overlays aligned to all visible coloured leaflet squares. */
.dcci-stand-app {
  width: min(1360px, 100%);
}

.dcci-stand-workspace {
  grid-template-columns: minmax(0, 1fr) 340px;
  min-height: 820px;
}

.dcci-stand-stage {
  min-height: 820px;
  padding: 86px 28px 46px 44px;
}

.dcci-stand-zone {
  width: min(920px, 98%);
  aspect-ratio: 1 / 0.92;
}

.dcci-stand-rotator {
  width: min(720px, 86vw);
}

.dcci-stand-plant {
  right: clamp(4px, 2.4vw, 36px);
  bottom: 18px;
  width: clamp(132px, 16vw, 210px);
}

.dcci-leaflet-slot {
  width: 17.2%;
  height: 12.5%;
  border-radius: 10px;
}

.dcci-slot-0 { left: 38.2%; top: 18.5%; }
.dcci-slot-1 { left: 38.2%; top: 36.9%; }
.dcci-slot-2 { left: 38.2%; top: 55.4%; }
.dcci-slot-3 { left: 38.2%; top: 73.8%; }
.dcci-slot-4 { left: 60.6%; top: 18.5%; }
.dcci-slot-5 { left: 60.6%; top: 36.9%; }
.dcci-slot-6 { left: 60.6%; top: 55.4%; }
.dcci-slot-7 { left: 60.6%; top: 73.8%; }

.dcci-slot-0 .dcci-leaflet-cover,
.dcci-slot-1 .dcci-leaflet-cover,
.dcci-slot-2 .dcci-leaflet-cover,
.dcci-slot-3 .dcci-leaflet-cover {
  transform: perspective(380px) rotateY(7deg) rotateZ(1.2deg);
}

.dcci-slot-4 .dcci-leaflet-cover,
.dcci-slot-5 .dcci-leaflet-cover,
.dcci-slot-6 .dcci-leaflet-cover,
.dcci-slot-7 .dcci-leaflet-cover {
  transform: perspective(380px) rotateY(-7deg) rotateZ(-1.2deg);
}

.dcci-leaflet-cover {
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.74), 0 7px 14px rgba(28,40,51,0.27);
}

.dcci-cover-inner {
  padding: 9px 9px 8px 14px;
}

.dcci-cover-kicker,
.dcci-cover-tag {
  font-size: clamp(0.44rem, 0.75vw, 0.58rem);
  line-height: 1;
}

.dcci-cover-title {
  margin-top: 5px;
  font-size: clamp(0.58rem, 0.95vw, 0.86rem);
  line-height: 1.02;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dcci-cover-lines {
  gap: 4px;
  margin-top: 8px;
}

.dcci-cover-lines span {
  height: 4px;
}

.dcci-cover-badge {
  min-width: 28px;
  height: 28px;
  border-radius: 10px 10px 10px 3px;
  padding: 0 5px;
  font-size: clamp(0.64rem, 1vw, 0.88rem);
}

.dcci-cover-footer {
  gap: 5px;
}

@media (max-width: 960px) {
  .dcci-stand-workspace { min-height: auto; }
  .dcci-stand-stage { min-height: 760px; }
  .dcci-stand-rotator { width: min(620px, 90vw); }
}

@media (max-width: 640px) {
  .dcci-stand-stage { min-height: 590px; }
  .dcci-stand-zone { aspect-ratio: 1 / 1.05; }
  .dcci-stand-rotator { width: min(390px, 92vw); }
  .dcci-leaflet-slot { width: 18%; height: 11.8%; }
  .dcci-cover-inner { padding: 6px 6px 5px 10px; }
  .dcci-cover-kicker,
  .dcci-cover-tag,
  .dcci-cover-lines { display: none; }
  .dcci-cover-title { font-size: 0.52rem; -webkit-line-clamp: 3; }
  .dcci-cover-badge { min-width: 20px; height: 20px; font-size: 0.58rem; }
}

/* v1.3 precision overlay alignment: positions now use the actual top-left corners
   of the coloured leaflet panels in the stand asset, not their visual centres. */
.dcci-leaflet-slot {
  width: 14.4%;
  height: 11.9%;
  border-radius: 10px;
}

.dcci-slot-0 { left: 31.3%; top: 12.2%; width: 13.3%; height: 11.8%; }
.dcci-slot-1 { left: 31.3%; top: 30.7%; width: 13.6%; height: 12.0%; }
.dcci-slot-2 { left: 31.0%; top: 48.8%; width: 13.8%; height: 13.2%; }
.dcci-slot-3 { left: 31.2%; top: 66.7%; width: 13.2%; height: 10.4%; }

.dcci-slot-4 { left: 53.1%; top: 12.1%; width: 15.0%; height: 11.9%; }
.dcci-slot-5 { left: 53.0%; top: 31.0%; width: 15.0%; height: 11.5%; }
.dcci-slot-6 { left: 53.0%; top: 49.6%; width: 14.9%; height: 12.5%; }
.dcci-slot-7 { left: 53.3%; top: 67.2%; width: 14.4%; height: 9.9%; }

.dcci-slot-0 .dcci-leaflet-cover,
.dcci-slot-1 .dcci-leaflet-cover,
.dcci-slot-2 .dcci-leaflet-cover,
.dcci-slot-3 .dcci-leaflet-cover,
.dcci-slot-4 .dcci-leaflet-cover,
.dcci-slot-5 .dcci-leaflet-cover,
.dcci-slot-6 .dcci-leaflet-cover,
.dcci-slot-7 .dcci-leaflet-cover {
  transform: none;
}

.dcci-leaflet-cover {
  border-radius: 9px;
}

@media (max-width: 640px) {
  .dcci-slot-0 { left: 31.3%; top: 12.2%; width: 13.3%; height: 11.8%; }
  .dcci-slot-1 { left: 31.3%; top: 30.7%; width: 13.6%; height: 12.0%; }
  .dcci-slot-2 { left: 31.0%; top: 48.8%; width: 13.8%; height: 13.2%; }
  .dcci-slot-3 { left: 31.2%; top: 66.7%; width: 13.2%; height: 10.4%; }
  .dcci-slot-4 { left: 53.1%; top: 12.1%; width: 15.0%; height: 11.9%; }
  .dcci-slot-5 { left: 53.0%; top: 31.0%; width: 15.0%; height: 11.5%; }
  .dcci-slot-6 { left: 53.0%; top: 49.6%; width: 14.9%; height: 12.5%; }
  .dcci-slot-7 { left: 53.3%; top: 67.2%; width: 14.4%; height: 9.9%; }
}

/* v1.5 bookshelf-style scene, search tools and plant table */
.dcci-stand-app {
  width: min(1280px, 100%);
  padding: 0 0 34px;
  background:
    linear-gradient(180deg, rgba(95, 42, 117, 0.08), rgba(142, 68, 173, 0.04)),
    #f4e9ff;
  border-top: 8px solid #4b0f6f;
}

.dcci-stand-header {
  text-align: left;
  padding: 22px clamp(18px, 4vw, 44px) 18px;
  margin-bottom: 0;
}

.dcci-stand-eyebrow {
  letter-spacing: 0.04em;
}

.dcci-stand-heading {
  max-width: 460px;
  color: #301064;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  letter-spacing: -0.06em;
}

.dcci-stand-subtitle {
  max-width: 520px;
  margin: 14px 0 0;
  color: #251148;
}

.dcci-stand-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dcci-bookshelf-link,
.dcci-bookshelf-link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7b2df2, #4b0f6f);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(75, 15, 111, 0.24);
}

.dcci-bookshelf-link::after {
  content: "→";
  font-weight: 900;
}

.dcci-bookshelf-link:hover {
  transform: translateY(-1px);
}

.dcci-stand-shell {
  margin: 0 clamp(12px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(95, 42, 117, 0.22);
}

.dcci-stand-workspace {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.dcci-stand-stage {
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.96), rgba(255,255,255,0.3) 32%, transparent 54%),
    radial-gradient(circle at 84% 18%, rgba(255, 196, 39, 0.18), transparent 28%),
    linear-gradient(180deg, #f6ecff 0%, #f1e2ff 57%, #e7d5f7 57%, #dcc5ef 100%);
}

.dcci-stand-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 28%, rgba(255,255,255,0.2) 62%, transparent),
    linear-gradient(180deg, rgba(117, 74, 24, 0.08), rgba(117, 74, 24, 0.16));
  border-top: 2px solid rgba(95, 42, 117, 0.12);
  z-index: 0;
}

.dcci-stand-room {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.dcci-room-frame {
  position: absolute;
  display: block;
  width: 132px;
  height: 94px;
  border: 10px solid #c87523;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(48,16,100,0.18), rgba(255,255,255,0.62)),
    linear-gradient(90deg, #5f2a75, #e91e63, #3f51b5, #c75b12, #006b73);
  box-shadow: 0 12px 22px rgba(28,40,51,0.12), inset 0 0 0 4px rgba(255,255,255,0.55);
  opacity: 0.82;
}

.dcci-room-frame-one { left: 48px; top: 106px; }
.dcci-room-frame-two { right: 42px; top: 110px; width: 104px; height: 78px; opacity: 0.62; }

.dcci-stand-help,
.dcci-stand-rotator,
.dcci-plant-table {
  z-index: 5;
}

.dcci-stand-zone {
  z-index: 4;
}

.dcci-plant-table {
  position: absolute;
  left: clamp(18px, 4.6vw, 80px);
  bottom: 30px;
  width: clamp(150px, 18vw, 230px);
  height: clamp(210px, 28vw, 330px);
  pointer-events: none;
  filter: drop-shadow(0 22px 24px rgba(28, 40, 51, 0.16));
}

.dcci-plant-table .dcci-stand-plant {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 36%;
  width: 78%;
  transform: translateX(-50%);
  z-index: 4;
  filter: drop-shadow(0 14px 14px rgba(28, 40, 51, 0.16));
}

.dcci-table-top,
.dcci-table-body,
.dcci-table-knob {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #d9842d, #a95013 48%, #7d350a);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.28), inset 0 -5px 9px rgba(84,35,6,0.3), 0 12px 20px rgba(28,40,51,0.16);
}

.dcci-table-top {
  left: 4%;
  right: 4%;
  bottom: 32%;
  height: 12%;
  border-radius: 18px 18px 8px 8px;
}

.dcci-table-body {
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 36%;
  border-radius: 12px 12px 8px 8px;
}

.dcci-table-body::before {
  content: "";
  position: absolute;
  inset: 14% 12% auto;
  height: 3px;
  background: rgba(84,35,6,0.38);
  box-shadow: 0 32px 0 rgba(84,35,6,0.25);
}

.dcci-table-knob {
  left: 50%;
  bottom: 17%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.dcci-search-card {
  background: rgba(255,255,255,0.96);
}

.dcci-search-label,
.dcci-filter-label {
  display: block;
  margin: 10px 0 6px;
  color: #301064;
  font-size: 0.82rem;
  font-weight: 900;
}

.dcci-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dcci-search-row input,
.dcci-search-card select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(95,42,117,0.24);
  border-radius: 14px;
  background: #fff;
  color: var(--dcci-ink);
  padding: 10px 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}

.dcci-search-button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2df2, #4b0f6f);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  cursor: pointer;
}

.dcci-search-results,
.dcci-no-results-small {
  margin: 12px 0 0;
  color: var(--dcci-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.dcci-bookshelf-link-panel {
  margin-top: 14px;
  width: 100%;
}

.dcci-no-results {
  position: absolute;
  left: 28%;
  top: 38%;
  max-width: 360px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  color: #301064;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(28,40,51,0.16);
}

@media (max-width: 960px) {
  .dcci-stand-workspace { grid-template-columns: 1fr; }
  .dcci-stand-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .dcci-search-card { grid-column: 1 / -1; }
  .dcci-room-frame-two { display: none; }
}

@media (max-width: 640px) {
  .dcci-stand-header { padding-inline: 18px; }
  .dcci-stand-shell { margin-inline: 10px; }
  .dcci-stand-panel { display: block; }
  .dcci-room-frame { opacity: 0.3; transform: scale(0.75); transform-origin: top left; }
  .dcci-plant-table { width: 118px; height: 180px; left: 4px; bottom: 18px; opacity: 0.86; }
  .dcci-stand-help { left: 20px; right: 14px; }
  .dcci-no-results { left: 10%; right: 10%; top: 40%; }
}

/* v1.5.1 embedded DCC-i Bookshelf target */
.dcci-embedded-bookshelf {
  margin: 1.5rem auto 0;
  max-width: 1180px;
  scroll-margin-top: 1.5rem;
}

.dcci-embedded-bookshelf:empty {
  display: none;
}


/* v1.6 room refinements: real table asset, left placement, wooden poster frames and bookshelf-style gradient title. */
.dcci-stand-heading {
  background: linear-gradient(180deg, #301064 0%, #8e44ad 25%, #e91e63 44%, #3f51b5 60%, #c75b12 78%, #006b73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.dcci-stand-zone {
  width: min(980px, 100%);
}

.dcci-stand-rotator {
  width: min(650px, 68vw);
  margin-left: clamp(190px, 19vw, 250px);
}

.dcci-room-frame {
  border: 11px solid #c87523;
  background: linear-gradient(180deg, #d9842d, #a95013 52%, #7d350a);
  padding: 7px;
  overflow: hidden;
  opacity: 0.94;
  box-shadow:
    0 14px 24px rgba(28,40,51,0.15),
    inset 0 2px 4px rgba(255,255,255,0.32),
    inset 0 -5px 8px rgba(84,35,6,0.28);
}

.dcci-room-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.75);
}

.dcci-room-frame-one {
  left: 44px;
  top: 104px;
  width: 150px;
  height: 116px;
}

.dcci-room-frame-two {
  left: 220px;
  right: auto;
  top: 116px;
  width: 126px;
  height: 98px;
  opacity: 0.9;
}

.dcci-plant-table {
  left: clamp(20px, 3.2vw, 46px);
  bottom: 40px;
  width: clamp(205px, 20vw, 270px);
  height: clamp(265px, 28vw, 365px);
  z-index: 6;
}

.dcci-stand-table {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
  z-index: 2;
  filter: drop-shadow(0 18px 20px rgba(28, 40, 51, 0.15));
}

.dcci-plant-table .dcci-stand-plant {
  left: 50%;
  bottom: 61%;
  width: 58%;
  transform: translateX(-50%);
  z-index: 4;
}

.dcci-table-top,
.dcci-table-body,
.dcci-table-knob {
  display: none;
}

@media (max-width: 960px) {
  .dcci-stand-rotator {
    width: min(590px, 88vw);
    margin-left: clamp(120px, 18vw, 180px);
  }
  .dcci-plant-table {
    width: 180px;
    height: 245px;
    left: 18px;
    bottom: 30px;
  }
  .dcci-room-frame-one { left: 30px; top: 112px; transform: scale(0.88); transform-origin: top left; }
  .dcci-room-frame-two { left: 168px; top: 122px; transform: scale(0.82); transform-origin: top left; display: block; }
}

@media (max-width: 640px) {
  .dcci-stand-heading {
    font-size: clamp(2.2rem, 14vw, 4rem);
  }
  .dcci-stand-rotator {
    width: min(390px, 92vw);
    margin-left: clamp(62px, 17vw, 92px);
  }
  .dcci-plant-table {
    width: 112px;
    height: 155px;
    left: 4px;
    bottom: 16px;
    opacity: 0.92;
  }
  .dcci-plant-table .dcci-stand-plant {
    bottom: 61%;
    width: 58%;
  }
  .dcci-room-frame-one { left: 14px; top: 132px; transform: scale(0.62); }
  .dcci-room-frame-two { left: 108px; top: 138px; transform: scale(0.58); }
}

/* v1.7 requested refinements: PNG table, single poster, darker DCC-i gradient and corrected plant seating. */
.dcci-stand-heading {
  background: linear-gradient(90deg, #301064 0%, #8e44ad 18%, #e91e63 38%, #3f51b5 58%, #c75b12 78%, #006b73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.dcci-stand-shell::before,
.dcci-stand-side-rail {
  background: linear-gradient(180deg, #301064, #8e44ad, #e91e63, #3f51b5, #c75b12, #006b73);
}
.dcci-plant-table .dcci-stand-plant {
  bottom: 61%;
  width: 58%;
}
.dcci-room-frame-one {
  display: none;
}
.dcci-room-frame-two {
  left: 54px;
  top: 108px;
  width: 136px;
  height: 106px;
}
@media (max-width: 960px) {
  .dcci-room-frame-two { left: 36px; top: 116px; transform: scale(0.84); transform-origin: top left; }
}
@media (max-width: 640px) {
  .dcci-plant-table .dcci-stand-plant { bottom: 61%; width: 58%; }
  .dcci-room-frame-two { left: 16px; top: 134px; transform: scale(0.62); }
}

/* v1.8 requested refinements: larger aligned stand, local Milo poster, table backplate and no embedded bookshelf. */
.dcci-stand-zone {
  width: min(1060px, 100%);
}

.dcci-stand-rotator {
  width: min(760px, 72vw);
  /* corrected direction: keep the larger stand in the stage area, clear of the right-hand menu */
  margin-left: clamp(24px, 5vw, 76px);
  z-index: 7;
}

.dcci-stand-leaflets {
  z-index: 8;
}

.dcci-leaflet-slot {
  pointer-events: auto;
  z-index: 9;
}

.dcci-leaflet-cover {
  pointer-events: none;
}

.dcci-plant-table {
  left: clamp(18px, 2.4vw, 38px);
  bottom: 34px;
  width: clamp(205px, 19vw, 252px);
  height: clamp(275px, 27vw, 354px);
  z-index: 5;
}

.dcci-plant-table::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 39%;
  bottom: 14%;
  border-radius: 18px;
  background: linear-gradient(180deg, #8d4a13, #613006 64%, #3f1d04);
  box-shadow: inset 0 12px 24px rgba(0,0,0,0.18);
  z-index: 1;
}

.dcci-stand-table {
  z-index: 2;
}

.dcci-plant-table .dcci-stand-plant {
  bottom: 66%;
  width: 56%;
  z-index: 4;
}

.dcci-room-frame-two {
  left: 50px;
  top: 96px;
  width: 176px;
  height: 128px;
  opacity: 0.94;
}

.dcci-room-frame-two img {
  object-position: center center;
}

.dcci-embedded-bookshelf {
  display: none !important;
}

@media (max-width: 960px) {
  .dcci-stand-rotator {
    width: min(650px, 90vw);
    margin-left: clamp(150px, 20vw, 205px);
  }
  .dcci-plant-table {
    width: 174px;
    height: 245px;
    left: 12px;
    bottom: 26px;
  }
  .dcci-plant-table .dcci-stand-plant {
    bottom: 66%;
    width: 56%;
  }
  .dcci-room-frame-two {
    left: 30px;
    top: 104px;
    width: 150px;
    height: 110px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .dcci-stand-rotator {
    width: min(420px, 93vw);
    margin-left: clamp(70px, 18vw, 100px);
  }
  .dcci-plant-table {
    width: 108px;
    height: 154px;
    left: 4px;
    bottom: 16px;
  }
  .dcci-plant-table .dcci-stand-plant {
    bottom: 66%;
    width: 56%;
  }
  .dcci-room-frame-two {
    left: 12px;
    top: 128px;
    width: 118px;
    height: 88px;
    transform: none;
  }
}

/* Saved resources strip - bookshelf-style */
.dcci-saved-resources {
  margin: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(95,42,117,0.14);
  box-shadow: 0 16px 34px rgba(28,40,51,0.12);
}

.dcci-saved-header {
  padding: 12px 16px 10px;
  color: #fff;
  background: linear-gradient(90deg, var(--dcci-deep-purple), var(--dcci-pink), #c75b12, #006b73, #1769aa);
}

.dcci-saved-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.dcci-saved-header p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.94);
  font-weight: 700;
  font-size: 0.9rem;
}

.dcci-saved-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(184px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 12px 14px 14px;
  scroll-snap-type: x proximity;
}

.dcci-saved-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--dcci-muted);
  font-weight: 700;
  background: rgba(234,223,242,0.55);
  border: 1px dashed rgba(95,42,117,0.26);
  border-radius: 14px;
  padding: 14px;
}

.dcci-saved-item {
  position: relative;
  min-width: 0;
  scroll-snap-align: start;
}

.dcci-saved-open {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) 26px;
  gap: 9px;
  align-items: center;
  text-align: left;
  border: 1px solid rgba(95,42,117,0.16);
  border-radius: 14px;
  padding: 8px 34px 8px 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244,236,250,0.88));
  box-shadow: 0 9px 18px rgba(28,40,51,0.11);
  cursor: pointer;
}

.dcci-saved-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dcci-purple), var(--dcci-pink));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.dcci-saved-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dcci-saved-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.dcci-saved-copy strong {
  display: block;
  color: var(--dcci-deep-purple);
  font-size: 0.76rem;
  line-height: 1.1;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dcci-saved-copy span {
  color: var(--dcci-muted);
  font-size: 0.68rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dcci-saved-go,
.dcci-saved-remove {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--dcci-purple), var(--dcci-indigo));
  box-shadow: 0 5px 12px rgba(95,42,117,0.24);
  font-weight: 900;
  line-height: 1;
}

.dcci-saved-remove {
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: linear-gradient(135deg, var(--dcci-pink), #c75b12);
  cursor: pointer;
}

.dcci-cover-save {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--dcci-pink), var(--dcci-indigo));
  font-size: 0.78rem;
  box-shadow: 0 5px 10px rgba(28,40,51,0.18);
}

@media (max-width: 760px) {
  .dcci-saved-resources { margin: 14px; }
  .dcci-saved-list { grid-auto-columns: minmax(210px, 86%); }
}


/* v1.11 account saving + resource actions */
.dcci-modal-actions .dcci-download { text-align: center; }
.dcci-status a { color: inherit; font-weight: 900; text-decoration: underline; }

/* v1.10 visual alignment refinements: left-shifted stand, larger poster, cleaner frame, table/stand baseline alignment. */
.dcci-stand-stage {
  align-items: end;
  padding-bottom: 34px;
}

.dcci-stand-zone {
  align-self: end;
  justify-self: start;
  margin-left: clamp(180px, 17vw, 245px);
  margin-bottom: 0;
}

.dcci-stand-rotator {
  width: min(790px, 70vw);
  margin-left: 0;
  transform-origin: center bottom;
}

.dcci-plant-table {
  bottom: 34px;
  left: clamp(20px, 2.8vw, 44px);
  width: clamp(218px, 20vw, 268px);
  height: clamp(286px, 28vw, 360px);
}

.dcci-plant-table::before {
  left: 9%;
  right: 9%;
  top: 38%;
  bottom: 10%;
  border-radius: 20px;
  background: linear-gradient(180deg, #9a5519 0%, #673509 56%, #351804 100%);
  box-shadow: inset 0 16px 26px rgba(0,0,0,0.22), 0 8px 18px rgba(28,40,51,0.08);
}

.dcci-plant-table .dcci-stand-plant {
  left: 52%;
  bottom: 68%;
  width: 60%;
}

.dcci-room-frame-two {
  left: 44px;
  top: 80px;
  width: 238px;
  height: 168px;
  padding: 0;
  border-width: 12px;
  border-radius: 14px;
  opacity: 0.98;
}

.dcci-room-frame-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 960px) {
  .dcci-stand-stage { align-items: end; }
  .dcci-stand-zone {
    justify-self: start;
    margin-left: clamp(118px, 18vw, 160px);
  }
  .dcci-stand-rotator {
    width: min(690px, 88vw);
    margin-left: 0;
  }
  .dcci-plant-table {
    width: 184px;
    height: 256px;
    left: 12px;
    bottom: 34px;
  }
  .dcci-plant-table .dcci-stand-plant {
    left: 52%;
    bottom: 68%;
    width: 60%;
  }
  .dcci-room-frame-two {
    left: 24px;
    top: 92px;
    width: 184px;
    height: 130px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .dcci-stand-stage {
    align-items: center;
    padding-bottom: 28px;
  }
  .dcci-stand-zone {
    justify-self: center;
    margin-left: 0;
  }
  .dcci-stand-rotator {
    width: min(430px, 93vw);
  }
  .dcci-plant-table {
    width: 116px;
    height: 160px;
    left: 4px;
    bottom: 18px;
  }
  .dcci-plant-table .dcci-stand-plant {
    left: 52%;
    bottom: 68%;
    width: 60%;
  }
  .dcci-room-frame-two {
    left: 12px;
    top: 126px;
    width: 132px;
    height: 94px;
  }
}

/* v1.12 featured labels + centred 3D saved star */
.dcci-featured-label {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  max-width: calc(100% - 14px);
  min-height: 18px;
  padding: 3px 7px 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dcci-purple), var(--dcci-indigo));
  color: #fff;
  font-size: clamp(0.48rem, 0.72vw, 0.62rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 5px 11px rgba(44, 31, 86, 0.24);
}

.dcci-cover-save,
.dcci-saved-remove {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
  padding: 0;
}

.dcci-cover-save {
  width: 24px;
  min-width: 24px;
  height: 24px;
  font-size: 0.86rem;
}

.dcci-saved-remove {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .dcci-featured-label { top: 5px; right: 5px; min-height: 15px; padding: 2px 5px; font-size: 0.48rem; }
  .dcci-cover-save { width: 20px; min-width: 20px; height: 20px; font-size: 0.72rem; }
}

/* v1.13 wall poster swap and darker table backing. */
.dcci-plant-table::before {
  background: linear-gradient(180deg, #6f3a0d 0%, #3f1e04 55%, #160b02 100%);
  box-shadow: inset 0 18px 30px rgba(0,0,0,0.34), 0 8px 18px rgba(28,40,51,0.10);
}
.dcci-room-frame-two img {
  object-fit: cover;
  background: transparent;
}

/* v1.14 corrected stand direction: shift the whole stand assembly left, away from the search/menu column. */
@media (min-width: 961px) {
  .dcci-stand-zone {
    margin-left: clamp(42px, 5vw, 92px) !important;
    transform: translateX(-76px);
  }
  .dcci-stand-rotator {
    margin-left: 0 !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-zone {
    margin-left: clamp(52px, 8vw, 92px) !important;
    transform: translateX(-42px);
  }
  .dcci-stand-rotator {
    margin-left: 0 !important;
  }
}

/* Resource workspace view: used by app-workspace template page. */
.dcci-resource-workspace {
  --dcci-resource-purple: #4b168c;
  --dcci-resource-magenta: #c0268d;
  --dcci-resource-indigo: #32127a;
  --dcci-resource-orange: #c96a14;
  --dcci-resource-teal: #00656b;
  max-width: 1180px;
  margin: 24px auto;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,237,255,0.96));
  box-shadow: 0 22px 58px rgba(50,18,122,0.16);
  color: #1f1546;
}

.dcci-resource-workspace-header {
  border-radius: 22px;
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(135deg, rgba(75,22,140,0.12), rgba(201,106,20,0.08), rgba(0,101,107,0.12));
  border: 1px solid rgba(75,22,140,0.16);
}

.dcci-resource-eyebrow {
  margin: 0 0 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dcci-resource-purple);
}

.dcci-resource-workspace h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.95;
  font-weight: 1000;
  background: linear-gradient(90deg, var(--dcci-resource-purple), var(--dcci-resource-magenta), var(--dcci-resource-indigo), var(--dcci-resource-orange), var(--dcci-resource-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dcci-resource-summary {
  max-width: 76ch;
  color: #3a2a64;
  font-weight: 650;
  font-size: 1.05rem;
  line-height: 1.55;
}

.dcci-resource-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dcci-resource-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

.dcci-resource-main,
.dcci-resource-detail-card {
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(75,22,140,0.14);
  box-shadow: 0 14px 32px rgba(50,18,122,0.09);
}

.dcci-resource-main {
  padding: clamp(14px, 2vw, 24px);
}

.dcci-resource-image-frame {
  margin: 0 0 20px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(75,22,140,0.14);
}

.dcci-resource-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.dcci-resource-html {
  font-size: 1rem;
  line-height: 1.65;
  color: #26184c;
}

.dcci-resource-side {
  display: grid;
  gap: 14px;
}

.dcci-resource-detail-card {
  padding: 18px;
}

.dcci-resource-detail-card h2 {
  margin: 0 0 12px;
  color: var(--dcci-resource-purple);
  font-size: 1.05rem;
}

.dcci-resource-detail-card p,
.dcci-resource-detail-card li {
  color: #3a2a64;
  line-height: 1.5;
}

.dcci-resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dcci-resource-tags span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(75,22,140,0.12);
  color: var(--dcci-resource-purple);
  font-weight: 800;
  font-size: 0.84rem;
}

@media (max-width: 860px) {
  .dcci-resource-workspace-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #fff !important;
  }
  .no-print,
  .dcci-stand-app,
  .dcci-saved-resources,
  .site-header,
  .site-footer,
  header[role="banner"],
  footer[role="contentinfo"] {
    display: none !important;
  }
  .dcci-resource-workspace {
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
  }
  .dcci-resource-workspace-header,
  .dcci-resource-main,
  .dcci-resource-detail-card,
  .dcci-resource-image-frame {
    box-shadow: none !important;
    border-color: #ddd !important;
  }
  .dcci-resource-workspace-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v2.5 layout correction: separate table and stand, enlarge plant */
.dcci-stand-rotator {
  margin-left: clamp(115px, 12vw, 170px) !important;
}

.dcci-plant-table {
  left: clamp(-18px, -1.2vw, 2px) !important;
  bottom: 34px !important;
}

.dcci-plant-table .dcci-stand-plant {
  width: 112% !important;
  bottom: 60% !important;
  left: 51% !important;
}

@media (max-width: 960px) {
  .dcci-stand-rotator {
    margin-left: clamp(170px, 24vw, 235px) !important;
  }
  .dcci-plant-table {
    left: -10px !important;
  }
  .dcci-plant-table .dcci-stand-plant {
    width: 108% !important;
    bottom: 60% !important;
  }
}

@media (max-width: 640px) {
  .dcci-stand-rotator {
    margin-left: clamp(86px, 22vw, 118px) !important;
  }
  .dcci-plant-table {
    left: -8px !important;
  }
  .dcci-plant-table .dcci-stand-plant {
    width: 104% !important;
    bottom: 60% !important;
  }
}

/* v3.0 multi-page infographic resources */
.dcci-modal-image-wrap {
  display: grid;
  gap: 14px;
  border: 0;
  background: transparent;
}

.dcci-modal-image-page {
  margin: 0;
  border: 1px solid var(--dcci-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.dcci-modal-page-label {
  display: inline-flex;
  margin: 10px 10px 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(75,22,140,0.1);
  color: var(--dcci-deep-purple);
  font-size: 0.78rem;
  font-weight: 900;
}

.dcci-resource-image-pages {
  display: grid;
  gap: 20px;
}

.dcci-resource-image-frame figcaption {
  margin: 0 0 10px;
  color: var(--dcci-resource-purple);
  font-weight: 900;
  font-size: 0.9rem;
}

.dcci-resource-print {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}

.dcci-resource-print-page {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #fff;
  page-break-after: always;
  break-after: page;
}

.dcci-resource-print-page:last-child {
  page-break-after: auto;
  break-after: auto;
}

.dcci-resource-print-page img {
  display: block;
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }
  .dcci-print-landscape {
    page: dcciLandscape;
  }
  .dcci-print-portrait {
    page: dcciPortrait;
  }
  @page dcciLandscape {
    size: A4 landscape;
    margin: 0;
  }
  @page dcciPortrait {
    size: A4 portrait;
    margin: 0;
  }
  html,
  body {
    width: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }
  body * {
    visibility: hidden !important;
  }
  .dcci-resource-print,
  .dcci-resource-print * {
    visibility: visible !important;
  }
  .dcci-resource-print {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .dcci-resource-print-page {
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .dcci-resource-print-page img {
    max-width: 100vw !important;
    max-height: 100vh !important;
  }
}

/* v1.17 stand spacing correction: move the visible stand back left so it is not tucked under the right-hand menu. */
@media (min-width: 961px) {
  .dcci-stand-zone {
    margin-left: 0 !important;
    transform: translateX(-150px) !important;
  }
  .dcci-stand-rotator {
    margin-left: 0 !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-zone {
    margin-left: 0 !important;
    transform: translateX(-78px) !important;
  }
}


/* v2.7 menu simplification and stage lift: remove visible browse box and reduce top dead space. */
.dcci-thumb-list-hidden {
  display: none !important;
}

@media (min-width: 961px) {
  .dcci-stand-workspace {
    min-height: 700px !important;
  }

  .dcci-stand-stage {
    min-height: 700px !important;
    padding-top: 42px !important;
    padding-bottom: 18px !important;
  }

  .dcci-stand-zone {
    transform: translate(-150px, -42px) !important;
  }

  .dcci-room-frame-two {
    top: 76px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-stage {
    min-height: 670px !important;
    padding-top: 56px !important;
  }

  .dcci-stand-zone {
    transform: translate(-78px, -26px) !important;
  }
}

/* v2.8 stage composition correction: centre the stand/table scene, add breathing room, and lower the visual group. */
@media (min-width: 961px) {
  .dcci-stand-stage {
    padding-top: 72px !important;
    padding-bottom: 28px !important;
    min-height: 740px !important;
  }

  .dcci-stand-zone {
    justify-self: center !important;
    margin-left: 0 !important;
    transform: translate(-34px, 18px) !important;
  }

  .dcci-stand-rotator {
    margin-left: 0 !important;
  }

  .dcci-plant-table {
    left: clamp(24px, 3.4vw, 48px) !important;
    bottom: 28px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-stage {
    padding-top: 74px !important;
    padding-bottom: 28px !important;
    min-height: 700px !important;
  }

  .dcci-stand-zone {
    justify-self: center !important;
    margin-left: 0 !important;
    transform: translate(-18px, 14px) !important;
  }

  .dcci-stand-rotator {
    margin-left: 0 !important;
  }

  .dcci-plant-table {
    left: 18px !important;
    bottom: 28px !important;
  }
}

/* v3.1 positioning pass: hide browse controls, rebalance the stand/table scene and add breathing room under the instruction row. */
.dcci-thumb-list,
.dcci-thumb-list-hidden,
[data-thumbs] {
  display: none !important;
}

@media (min-width: 961px) {
  .dcci-stand-workspace {
    min-height: 710px !important;
  }

  .dcci-stand-stage {
    min-height: 710px !important;
    padding-top: 104px !important;
    padding-right: 28px !important;
    padding-bottom: 32px !important;
    padding-left: 34px !important;
    align-items: center !important;
    justify-items: center !important;
  }

  .dcci-stand-help {
    top: 28px !important;
    left: 38px !important;
    right: 28px !important;
    padding-bottom: 18px !important;
  }

  .dcci-stand-controls {
    margin-left: 26px !important;
  }

  .dcci-stand-zone {
    width: min(650px, 100%) !important;
    align-self: center !important;
    justify-self: center !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    transform: translate(-42px, 34px) !important;
  }

  .dcci-stand-rotator {
    width: min(600px, 78%) !important;
    margin-left: clamp(72px, 7.6vw, 110px) !important;
  }

  .dcci-plant-table {
    left: clamp(18px, 2.8vw, 38px) !important;
    bottom: 28px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-stage {
    min-height: 690px !important;
    padding-top: 96px !important;
  }

  .dcci-stand-help {
    top: 24px !important;
    left: 28px !important;
    right: 22px !important;
  }

  .dcci-stand-zone {
    transform: translate(-28px, 32px) !important;
  }

  .dcci-stand-rotator {
    width: min(520px, 78%) !important;
    margin-left: clamp(50px, 7vw, 84px) !important;
  }

  .dcci-plant-table {
    left: 16px !important;
    bottom: 28px !important;
  }
}

/* v3.2 screenshot correction: rebuild desktop/table/stand composition with a fixed gap. */
.dcci-thumb-list,
.dcci-thumb-list-hidden,
[data-thumbs] {
  display: none !important;
}

@media (min-width: 961px) {
  .dcci-stand-workspace {
    min-height: 730px !important;
  }

  .dcci-stand-stage {
    min-height: 730px !important;
    padding: 116px 30px 34px 34px !important;
    align-items: center !important;
    justify-items: center !important;
  }

  .dcci-stand-help {
    top: 26px !important;
    left: 38px !important;
    right: 30px !important;
    padding-bottom: 22px !important;
  }

  .dcci-stand-controls {
    margin-left: 32px !important;
  }

  .dcci-stand-zone {
    width: min(720px, 100%) !important;
    height: 580px !important;
    aspect-ratio: auto !important;
    align-self: center !important;
    justify-self: center !important;
    margin: 0 !important;
    transform: translate(4px, 18px) !important;
    display: block !important;
  }

  .dcci-stand-room {
    inset: 0 !important;
  }

  .dcci-room-frame-two {
    left: 74px !important;
    top: 72px !important;
    width: 205px !important;
    height: 145px !important;
  }

  .dcci-plant-table {
    left: 32px !important;
    bottom: 30px !important;
    width: 220px !important;
    height: 300px !important;
  }

  .dcci-plant-table .dcci-stand-plant {
    width: 112% !important;
    bottom: 59% !important;
    left: 51% !important;
  }

  .dcci-stand-rotator {
    position: absolute !important;
    left: 286px !important;
    right: auto !important;
    bottom: 30px !important;
    width: 430px !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-stage {
    min-height: 700px !important;
    padding-top: 108px !important;
  }

  .dcci-stand-help {
    top: 24px !important;
    left: 28px !important;
    right: 24px !important;
    padding-bottom: 18px !important;
  }

  .dcci-stand-zone {
    width: min(660px, 100%) !important;
    height: 540px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    transform: translate(0, 18px) !important;
    display: block !important;
  }

  .dcci-room-frame-two {
    left: 50px !important;
    top: 80px !important;
    width: 172px !important;
    height: 122px !important;
  }

  .dcci-plant-table {
    left: 18px !important;
    bottom: 28px !important;
    width: 190px !important;
    height: 262px !important;
  }

  .dcci-plant-table .dcci-stand-plant {
    width: 108% !important;
    bottom: 59% !important;
    left: 51% !important;
  }

  .dcci-stand-rotator {
    position: absolute !important;
    left: 242px !important;
    bottom: 28px !important;
    width: 390px !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

/* v3.3 focused adjustment only: enlarge stand in place, lift wall picture, centre plant on table. */
@media (min-width: 961px) {
  .dcci-room-frame-two {
    top: 38px !important;
  }

  .dcci-plant-table .dcci-stand-plant {
    left: 50% !important;
    bottom: 62% !important;
  }

  .dcci-stand-rotator {
    width: 485px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-room-frame-two {
    top: 50px !important;
  }

  .dcci-plant-table .dcci-stand-plant {
    left: 50% !important;
    bottom: 62% !important;
  }

  .dcci-stand-rotator {
    width: 430px !important;
  }
}

/* v3.4 requested micro-adjustment: lift wall picture by 30px and scale stand 50% in place. */
@media (min-width: 961px) {
  .dcci-room-frame-two {
    top: 8px !important;
  }

  .dcci-stand-rotator {
    width: 728px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-room-frame-two {
    top: 20px !important;
  }

  .dcci-stand-rotator {
    width: 645px !important;
  }
}


/* v3.5 hard override: force requested 50% stand scale and 30px wall-picture lift.
   This uses transform scaling so the stand asset and clickable card overlays enlarge together. */
@media (min-width: 961px) {
  .dcci-room-frame-two {
    top: -22px !important;
  }

  .dcci-stand-rotator {
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) scale(1.5) !important;
    transform-origin: 50% 100% !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-room-frame-two {
    top: -10px !important;
  }

  .dcci-stand-rotator {
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) scale(1.5) !important;
    transform-origin: 50% 100% !important;
  }
}

/* v3.6 correction: reduce over-scaled stand back to a usable focus size. */
@media (min-width: 961px) {
  .dcci-stand-rotator {
    width: 540px !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-rotator {
    width: 470px !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
  }
}

/* v3.7 requested focus adjustment: larger stand, forward layer, baseline/top alignment, visible card titles. */
@media (min-width: 961px) {
  .dcci-stand-stage {
    min-height: 840px !important;
  }

  .dcci-stand-zone {
    height: 760px !important;
    transform: translate(0, 14px) !important;
  }

  .dcci-room-frame-two {
    top: 38px !important;
  }

  .dcci-plant-table {
    bottom: 30px !important;
  }

  .dcci-stand-rotator {
    width: 585px !important;
    bottom: 30px !important;
    left: 286px !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
    z-index: 18 !important;
  }

  .dcci-stand-leaflets {
    z-index: 20 !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-stage {
    min-height: 760px !important;
  }

  .dcci-stand-zone {
    height: 680px !important;
    transform: translate(0, 12px) !important;
  }

  .dcci-room-frame-two {
    top: 34px !important;
  }

  .dcci-plant-table {
    bottom: 28px !important;
  }

  .dcci-stand-rotator {
    width: 510px !important;
    bottom: 28px !important;
    left: 232px !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
    z-index: 18 !important;
  }

  .dcci-stand-leaflets {
    z-index: 20 !important;
  }
}

.dcci-leaflet-cover.has-image .dcci-cover-inner {
  justify-content: flex-end !important;
  padding: 7px 6px 6px 8px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.12) 42%, rgba(255,255,255,0.92) 100%) !important;
}

.dcci-leaflet-cover.has-image .dcci-cover-kicker,
.dcci-leaflet-cover.has-image .dcci-cover-tag,
.dcci-leaflet-cover.has-image .dcci-cover-lines {
  display: none !important;
}

.dcci-leaflet-cover.has-image .dcci-cover-title {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 3px 4px !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,0.9) !important;
  color: #16002f !important;
  font-size: clamp(0.46rem, 0.78vw, 0.72rem) !important;
  line-height: 1.04 !important;
  font-weight: 950 !important;
  text-shadow: none !important;
}


/* v3.8 requested refinements: keep saved star filled, remove duplicate wall frame, slight stand increase, card perspective. */
@media (min-width: 961px) {
  .dcci-stand-rotator {
    width: 625px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-rotator {
    width: 545px !important;
  }
}

.dcci-room-frame-two {
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: 0 10px 18px rgba(28,40,51,0.16) !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.dcci-room-frame-two img {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
}

.dcci-cover-save {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif !important;
  background: linear-gradient(135deg, var(--dcci-purple), var(--dcci-indigo)) !important;
  color: #fff !important;
}

.dcci-leaflet-slot.is-saved .dcci-cover-save {
  background: linear-gradient(135deg, var(--dcci-pink), var(--dcci-burnt-orange)) !important;
}

.dcci-slot-0 .dcci-leaflet-cover,
.dcci-slot-1 .dcci-leaflet-cover,
.dcci-slot-2 .dcci-leaflet-cover,
.dcci-slot-3 .dcci-leaflet-cover {
  transform: perspective(420px) rotateY(8deg) rotateZ(0.8deg) !important;
  transform-origin: center center !important;
}

.dcci-slot-4 .dcci-leaflet-cover,
.dcci-slot-5 .dcci-leaflet-cover,
.dcci-slot-6 .dcci-leaflet-cover,
.dcci-slot-7 .dcci-leaflet-cover {
  transform: perspective(420px) rotateY(-8deg) rotateZ(-0.8deg) !important;
  transform-origin: center center !important;
}


/* v1.15.5 wall picture fix: use supplied framed image only, with no generated frame/backing. */
.dcci-wall-picture {
  position: absolute !important;
  left: 60px !important;
  top: 40px !important;
  width: 250px !important;
  height: auto !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  z-index: 2 !important;
}

.dcci-wall-picture img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

@media (max-width: 960px) {
  .dcci-wall-picture {
    left: 28px !important;
    top: 48px !important;
    width: 180px !important;
  }
}

@media (max-width: 640px) {
  .dcci-wall-picture {
    left: 16px !important;
    top: 70px !important;
    width: 140px !important;
  }
}


/* v1.15.6 central-scene-only stand enlargement: make the wooden stand the stronger focal point while keeping it inside the left content area. */
@media (min-width: 961px) {
  .dcci-stand-rotator {
    width: 760px !important;
    left: 226px !important;
    bottom: 30px !important;
    max-width: none !important;
    margin: 0 !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
    z-index: 18 !important;
  }

  .dcci-stand-leaflets {
    z-index: 20 !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-rotator {
    width: 610px !important;
    left: 198px !important;
    bottom: 28px !important;
    max-width: none !important;
    margin: 0 !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
    z-index: 18 !important;
  }
}

/* v1.15.7 position-only correction: move the existing enlarged stand down and left, keeping size/style unchanged. */
@media (min-width: 961px) {
  .dcci-stand-rotator {
    width: 760px !important;
    left: 118px !important;
    right: auto !important;
    bottom: -118px !important;
    max-width: none !important;
    margin: 0 !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
    z-index: 18 !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-rotator {
    width: 610px !important;
    left: 92px !important;
    right: auto !important;
    bottom: -88px !important;
    max-width: none !important;
    margin: 0 !important;
    transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
    transform-origin: 50% 100% !important;
    z-index: 18 !important;
  }
}

/* v1.15.8 locked carousel stage: the stand wrapper no longer changes size, scale, x/y position, or origin between views. Rotation changes only the active content/cards. */
.dcci-stand-zone {
  position: relative !important;
  overflow: visible !important;
  transform-style: preserve-3d !important;
}

.dcci-stand-rotator {
  position: absolute !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  aspect-ratio: 900 / 1065 !important;
  transform-origin: 50% 100% !important;
  transform: rotateX(-4deg) rotateY(var(--rotation, 0deg)) !important;
  transition: transform 620ms cubic-bezier(.2, .72, .2, 1) !important;
  contain: layout paint !important;
  will-change: transform !important;
}

.dcci-stand-asset,
.dcci-stand-leaflets {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.dcci-stand-asset {
  display: block !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

.dcci-stand-leaflets {
  transform: none !important;
  transform-origin: 50% 100% !important;
}

@media (min-width: 961px) {
  .dcci-stand-zone {
    width: 660px !important;
    height: 760px !important;
    transform: translate(0, 14px) !important;
  }

  .dcci-stand-rotator {
    width: 760px !important;
    height: 899px !important;
    left: 118px !important;
    right: auto !important;
    bottom: -118px !important;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .dcci-stand-zone {
    width: 660px !important;
    height: 680px !important;
    transform: translate(0, 12px) !important;
  }

  .dcci-stand-rotator {
    width: 610px !important;
    height: 722px !important;
    left: 92px !important;
    right: auto !important;
    bottom: -88px !important;
  }
}

@media (max-width: 640px) {
  .dcci-stand-rotator {
    aspect-ratio: 900 / 1065 !important;
    height: auto !important;
  }
}

/* ============================================================
   Compact hub PREVIEW ([dcci_infographic_stand_preview]).
   Mirrors the briefing shelf: live hover/focus preview card on the
   left, the real rotating stand on the right with feature images on
   its shelf slots, a subtle count badge inside the panel, no title
   pill and no duplicate text CTA. One connected family.
   ============================================================ */
.dcci-stand-preview{max-width:560px;margin:0;font-family:'Montserrat',system-ui,sans-serif;}

/* Subtle count badge inside the purple stage (top-right) */
.dcci-stand-preview-count{position:absolute;top:14px;right:16px;z-index:3;
  font-size:9.5px;font-weight:900;letter-spacing:.03em;color:#fff;white-space:nowrap;
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22);
  border-radius:999px;padding:4px 11px;backdrop-filter:blur(3px);}

/* Live stage: preview card (left) + rotating stand (right) */
.dcci-stand-preview-stage--live{position:relative;display:grid;
  grid-template-columns:minmax(0,1fr) auto;gap:22px;align-items:center;justify-items:start;
  padding:24px 26px;border-radius:16px;min-height:358px;
  background:radial-gradient(130% 80% at 70% 8%,#3a2470,#2a1a5e 70%);
  box-shadow:inset 0 2px 18px rgba(0,0,0,.4);overflow:hidden;}

/* Selected-summary preview card (Daisy/DCC-i tactile style, fit-not-crop) */
.dcci-stand-livepreview{display:flex;flex-direction:column;width:100%;max-width:276px;text-decoration:none;
  justify-self:center;
  border-radius:18px;overflow:hidden;background:linear-gradient(160deg,#fffdf9,#f4ecff);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 18px 34px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.9);
  transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease;}
.dcci-stand-livepreview:hover,.dcci-stand-livepreview:focus-visible{transform:translateY(-3px);
  box-shadow:0 24px 42px rgba(0,0,0,.5);outline:none;}
.dcci-stand-livepreview.is-updating{opacity:.55;transform:translateY(2px);}
.dcci-stand-livepreview-thumb{position:relative;display:flex;align-items:center;justify-content:center;
  width:100%;max-height:270px;background:#1f1147;overflow:hidden;}
.dcci-stand-livepreview-thumb img{display:block;width:100%;height:auto;max-height:270px;object-fit:contain;}
.dcci-stand-livepreview-thumb.is-placeholder{aspect-ratio:16/10;background:radial-gradient(120% 120% at 30% 20%,#7a4fd0,#3a2470);}
.dcci-stand-livepreview-body{display:flex;flex-direction:column;gap:8px;padding:14px 16px 16px;}
.dcci-stand-livepreview-feat{align-self:flex-start;
  background:linear-gradient(135deg,#ff5ea0,#e3267a);color:#fff;border-radius:999px;
  padding:3px 11px;font-size:9px;font-weight:900;letter-spacing:.05em;text-transform:uppercase;
  box-shadow:0 4px 9px rgba(227,38,122,.4);}
.dcci-stand-livepreview-title{font-size:15px;line-height:1.18;font-weight:900;color:#2e1250;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;}
.dcci-stand-livepreview-meta{display:flex;flex-direction:column;gap:6px;}
.dcci-stand-livepreview-type{align-self:flex-start;font-size:9.5px;font-weight:800;letter-spacing:.02em;
  border-radius:999px;padding:3px 9px;background:#e8f7fb;color:#3d7e94;}
.dcci-stand-livepreview-summary{font-size:11px;line-height:1.3;font-weight:600;color:#5a4a72;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;}

/* Rotating stand (right) with feature images on shelf slots */
.dcci-stand-asset-wrap{position:relative;display:inline-block;height:358px;justify-self:end;}
.dcci-stand-asset-wrap .dcci-stand-preview-asset{display:block;height:358px;width:auto;max-width:none;}
/* Feature images on the stand front face, in rows of two. The grid is
   overlaid over the rack's visible slot area (tuned to the artwork). */
.dcci-stand-slots{position:absolute;top:11%;left:18%;right:18%;bottom:18%;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;grid-auto-rows:1fr;gap:7% 9%;}
.dcci-stand-slot{display:block;border-radius:2px;overflow:hidden;
  box-shadow:0 4px 7px rgba(0,0,0,.4);transition:transform .16s ease;}
.dcci-stand-slot img{display:block;width:100%;height:100%;object-fit:cover;}
.dcci-stand-slot:hover,.dcci-stand-slot:focus{transform:scale(1.06);outline:none;z-index:3;}

/* Empty stand stage (no items): just the asset, centred */
.dcci-stand-preview-stage--empty{position:relative;display:flex;align-items:center;justify-content:flex-end;
  padding:0 40px;border-radius:16px;height:320px;
  background:radial-gradient(130% 80% at 70% 8%,#3a2470,#2a1a5e 70%);
  box-shadow:inset 0 2px 18px rgba(0,0,0,.4);overflow:hidden;}
.dcci-stand-preview-stage--empty .dcci-stand-preview-asset{display:block;max-width:100%;width:auto;height:288px;object-fit:contain;
  filter:drop-shadow(0 16px 28px rgba(0,0,0,.45));}

@media (max-width:560px){
  .dcci-stand-preview{max-width:100%;}
  .dcci-stand-preview-stage--live{grid-template-columns:1fr;justify-items:center;gap:18px;}
  .dcci-stand-asset-wrap{justify-self:center;}
  .dcci-stand-livepreview{max-width:100%;}
}
