/* ============================================================
   Bidonex Kreator — Scoped Stylesheet
   All selectors prefixed with .bidonex-kreator
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=JetBrains+Mono:wght@500;700&display=swap');

/* ============================================================
   1. RESET & CUSTOM PROPERTIES
   ============================================================ */
.bidonex-kreator{
  isolation:isolate;
  box-sizing:border-box;
  --bg:#f4f4f4;
  --panel-bg:#ffffff;
  --surface:rgba(255,255,255,0.78);
  --border:rgba(0,0,0,0.12);
  --border-control:rgba(0,0,0,0.28);
  --text:#1f1f1f;
  --text-2:#6f6f6f;
  --text-3:#6f6f6f;
  --accent:#e31e25;
  --accent-soft:rgba(227,30,37,0.10);
  --cork-glow:#898680;
  --ease:cubic-bezier(0.22,1,0.36,1);
  --ease-spring:cubic-bezier(0.34,1.56,0.64,1);
  --section-gap:24px;
  --bid011-cork-offset:2px;
  min-height:100%;
  font-family:'Roboto',sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}
.bidonex-kreator *,.bidonex-kreator *::before,.bidonex-kreator *::after{margin:0;padding:0;box-sizing:border-box}

/* Film-grain overlay */
.bidonex-kreator::after{
  content:"";position:fixed;inset:0;opacity:.03;pointer-events:none;z-index:9999;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}




/* ============================================================
   3. HERO — TWO-COLUMN LAYOUT
   ============================================================ */
.bidonex-kreator .hero{
  display:flex;
  height:100vh;
  height:100dvh;
}


/* ============================================================
   4. HERO LEFT — SHAKER STAGE
   ============================================================ */
.bidonex-kreator .hero-left{
  flex:1 1 0;
  position:relative;
  display:flex;align-items:center;justify-content:center;
  min-width:0;
  overflow:hidden;            /* clips atmospheric blobs */
  perspective:900px;
  perspective-origin:50% 45%;
}

/* Atmosphere */
.bidonex-kreator .atmo{
  position:absolute;width:60vmax;height:60vmax;border-radius:50%;
  background:var(--cork-glow);
  filter:blur(clamp(80px,12vw,140px));opacity:.10;
  top:42%;left:50%;transform:translate(-50%,-50%);
  transition:background 1.2s var(--ease),opacity 1.2s var(--ease);
  pointer-events:none;will-change:transform,opacity;
}
.bidonex-kreator .grid-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:80px 80px;
  mask-image:radial-gradient(ellipse at 50% 45%,black 0%,transparent 60%);
  -webkit-mask-image:radial-gradient(ellipse at 50% 45%,black 0%,transparent 60%);
  pointer-events:none;
}
.bidonex-kreator #sbx-particles,.bidonex-kreator [data-bx="particles"]{position:absolute;inset:0;pointer-events:none;z-index:1;filter:blur(1px);opacity:.85}

/* Shaker product */
.bidonex-kreator .shaker-tilt{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  transition:transform .15s ease-out;will-change:transform;
  transform-style:preserve-3d;z-index:5;
  pointer-events:none;
}
.bidonex-kreator .shaker-tilt *{pointer-events:auto}
.bidonex-kreator .shaker-float{animation:floatIn 1.2s var(--ease) .2s both,float 6s ease-in-out 1.4s infinite}
.bidonex-kreator .shaker{
  position:relative;
  height:clamp(480px,82vh,930px);
  aspect-ratio:380/540;
}
.bidonex-kreator .layer{
  position:absolute;inset:0;width:100%;height:100%;object-fit:contain;
  pointer-events:none;
  transition:opacity .55s var(--ease),transform .55s var(--ease);
}
.bidonex-kreator .layer.entering{opacity:0;transform:scale(.96)}
.bidonex-kreator .layer.exiting{opacity:0;transform:scale(1.03)}
.bidonex-kreator #sbx-layer-cork[src*="BID011/korki/"],.bidonex-kreator [data-bx="layer-cork"][src*="BID011/korki/"]{transform:translateY(var(--bid011-cork-offset))}
.bidonex-kreator #sbx-layer-cork[src*="BID011/korki/"].entering,.bidonex-kreator [data-bx="layer-cork"][src*="BID011/korki/"].entering{transform:translateY(var(--bid011-cork-offset)) scale(.96)}
.bidonex-kreator #sbx-layer-cork[src*="BID011/korki/"].exiting,.bidonex-kreator [data-bx="layer-cork"][src*="BID011/korki/"].exiting{transform:translateY(var(--bid011-cork-offset)) scale(1.03)}

/* Shadow & reflection — anchored to bottom of hero-left */
.bidonex-kreator .shaker-shadow{
  display:block;
  position:absolute;bottom:24%;left:50%;transform:translateX(-50%);
  width:clamp(150px,15vw,230px);height:34px;
  background:radial-gradient(ellipse,rgba(17,17,17,.20),rgba(17,17,17,.08) 46%,transparent 72%);
  filter:blur(13px);opacity:.72;pointer-events:none;z-index:4;
}
.bidonex-kreator .shaker-reflection{
  position:absolute;bottom:8%;left:50%;transform:translateX(-50%);
  width:120px;height:20px;
  background:var(--cork-glow);filter:blur(20px);opacity:.10;
  pointer-events:none;z-index:3;transition:background 1.2s var(--ease);
}


/* ============================================================
   4.1 STAGE OVERLAYS
   ============================================================ */
.bidonex-kreator .sx-configurator-overlay {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(172px, 13vw, 220px);
  z-index: 2;
  pointer-events: none;
}

.bidonex-kreator .bidonex-stage-mark {
  position:absolute;
  left:8%;
  top:50%;
  transform:translateY(-50%);
  width:clamp(178px,14vw,230px);
  z-index:2;
  pointer-events:none;
  color:#111;
}

.bidonex-kreator .bidonex-stage-logo {
  display:block;
  width:clamp(82px,6.5vw,108px);
  height:auto;
  margin-bottom:8px;
  filter:none;
}

.bidonex-kreator .bidonex-stage-main {
  font-family:'Bebas Neue','Arial Narrow',sans-serif;
  font-size:clamp(42px,3.7vw,66px);
  line-height:.76;
  letter-spacing:1px;
  text-transform:uppercase;
}

.bidonex-kreator .bidonex-stage-main span {
  display:block;
  color:transparent;
  -webkit-text-stroke:1.2px #111;
  text-stroke:1.2px #111;
}

.bidonex-kreator .bidonex-stage-slash {
  width:clamp(76px,7vw,112px);
  height:9px;
  margin:10px 0 0;
  background:#e31e25;
  transform:skewX(-24deg);
  box-shadow:14px 0 0 #111;
}

.bidonex-kreator .bidonex-stage-small {
  margin-top:7px;
  font-family:'JetBrains Mono','Roboto Mono',monospace;
  font-size:clamp(7.5px,.68vw,9px);
  font-weight:700;
  line-height:1.28;
  letter-spacing:.9px;
  color:rgba(31,31,31,.68);
  text-transform:uppercase;
}

/* --- Anamorphic Floor Type (top mark) --- */
.bidonex-kreator .floor-glow {
  position:absolute;
  left:51%;
  top:61%;
  transform:translate(-50%,-50%);
  width:clamp(280px,30vw,460px);
  height:clamp(80px,9vw,150px);
  background:radial-gradient(ellipse,rgba(227,30,37,.12),transparent 70%);
  z-index:1;
  pointer-events:none;
}

.bidonex-kreator .floor-text {
  position:absolute;
  left:51%;
  top:47%;
  transform:translateX(-50%) rotateX(64deg);
  z-index:1;
  pointer-events:none;
  transform-origin:center center;
  font-family:'Bebas Neue','Arial Narrow',sans-serif;
  font-size:clamp(70px,10.8vw,168px);
  line-height:.72;
  letter-spacing:clamp(10px,1.35vw,20px);
  text-transform:uppercase;
  text-align:center;
  color:rgba(16,16,16,.045);
  white-space:nowrap;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 13%,#000 87%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 13%,#000 87%,transparent 100%);
}

.bidonex-kreator .floor-text .red-line {
  display:inline-block;
  transform:translateY(clamp(4px,.45vw,8px));
  color:rgba(227,30,37,.12);
  text-shadow:0 0 42px rgba(227,30,37,.10);
}

.bidonex-kreator .floor-text::after {
  content:"";
  position:absolute;
  inset:-18% 34%;
  background:radial-gradient(ellipse,rgba(248,247,243,.72),rgba(248,247,243,.28) 42%,transparent 72%);
  pointer-events:none;
}

.bidonex-kreator .model-labels-container {
  position: absolute;
  right: 2.8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 12vw, 188px);
  display: grid;
  gap: clamp(12px, 1.5vh, 16px);
  z-index: 3;
  pointer-events: auto;
  align-items: end;
  justify-items: end;
  perspective: 600px;
}

.bidonex-kreator .model-label-title {
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(8px, .75vw, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(31,31,31,.58);
  text-align: right;
  margin: 0 7px 4px 0;
  padding-right: 44px;
}

.bidonex-kreator .model-label-title::after {
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:34px;
  height:4px;
  background:#e31e25;
  transform:translateY(-50%) skewX(-24deg);
  box-shadow:6px 0 0 #111;
}

.bidonex-kreator .model-label {
  position:relative;
  width: clamp(148px, 11.4vw, 178px);
  min-height: clamp(42px, 4.8vh, 48px);
  display:grid;
  grid-template-columns:16px 1fr auto;
  align-items:center;
  gap:clamp(8px, .8vw, 12px);
  padding:0 clamp(11px, .9vw, 14px);
  border:1px solid rgba(0,0,0,.15);
  border-radius:4px 17px 17px 4px;
  background:rgba(255,255,255,.78);
  color:rgba(31,31,31,.58);
  font-family:'JetBrains Mono',monospace;
  line-height:1;
  cursor:pointer;
  transform-origin:0 50%;
  box-shadow:0 12px 20px rgba(0,0,0,.07), inset 0 1px 0 rgba(255,255,255,.9);
  transition:background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.bidonex-kreator .model-label:nth-of-type(1) { transform:rotate(-1.4deg) translateX(0); }
.bidonex-kreator .model-label:nth-of-type(2) { transform:rotate(1.1deg) translateX(8px); }
.bidonex-kreator .model-label:nth-of-type(3) { transform:rotate(-.9deg) translateX(4px); }
.bidonex-kreator .model-label:nth-of-type(4) { transform:rotate(1.3deg) translateX(10px); }

.bidonex-kreator .model-label.active {
  background:#111;
  border-color:#111;
  color:#fff;
  z-index:3;
  box-shadow:9px 0 0 #e31e25, 0 18px 30px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
  transform:rotate(-2.4deg) translateX(-8px);
}

.bidonex-kreator .model-label:hover {
  border-color:rgba(0,0,0,.32);
  color:#111;
  box-shadow:8px 0 0 rgba(227,30,37,.72), 0 16px 28px rgba(0,0,0,.12);
}

.bidonex-kreator .model-label.active:hover {
  color:#fff;
  box-shadow:9px 0 0 #e31e25, 0 18px 30px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
}

.bidonex-kreator .model-label span {
  width:10px;
  height:10px;
  border-radius:50%;
  border:2px solid currentColor;
  background:transparent;
  opacity:.78;
}

.bidonex-kreator .model-label strong {
  font-family:'Bebas Neue','Arial Narrow',sans-serif;
  font-size:clamp(27px, 2vw, 34px);
  font-weight:400;
  letter-spacing:.5px;
}

.bidonex-kreator .model-label em {
  font-style:normal;
  font-size:clamp(8px, .75vw, 10px);
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.bidonex-kreator .model-label.active span {
  background:#fff;
  box-shadow:0 0 0 4px rgba(255,255,255,.14);
}

.bidonex-kreator .vol-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 24px);
  color: #4a4a4a;
  text-transform: uppercase;
  width: auto;
  line-height: 1;
}


/* ============================================================
   5. HERO RIGHT — CONFIG PANEL
   ============================================================ */
.bidonex-kreator .hero-right{
  flex:0 0 clamp(480px,40vw,560px);
  position:relative;
  display:flex;flex-direction:column;
  overflow-x:hidden;overflow-y:auto;
  background:var(--panel-bg);
  border-left:1px solid var(--border);
  z-index:10;
  animation:fadeIn .8s var(--ease) .3s both;
  padding-bottom: clamp(24px, 4vh, 40px); /* Unscaled breathing room from the bottom */
  /* Custom scrollbar */
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.08) transparent;
}
.bidonex-kreator .hero-right.panel-fit-active{overflow-y:hidden}
.bidonex-kreator .hero-right::-webkit-scrollbar{width:4px}
.bidonex-kreator .hero-right::-webkit-scrollbar-track{background:transparent}
.bidonex-kreator .hero-right::-webkit-scrollbar-thumb{background:rgba(255,255,255,.1);border-radius:4px}

/* Content wrapper — flex:1 fills hero-right, min-height:0 allows shrinking, content fits viewport */
.bidonex-kreator .cfg-wrap{
  flex:1;
  min-height:0;
  /* Reduce bottom padding so auto-margins can do the centering work without double-spacing */
  padding:clamp(12px,2vh,24px) clamp(24px,3vw,40px);
  display:flex;flex-direction:column;
  gap:clamp(14px,1.8vh,22px);
  align-items: center; /* Center children horizontally */
}

/* Ensure children don't stretch beyond a certain width, but allow them to fill if smaller */
.bidonex-kreator .cfg-wrap > * {
  width: 100%;
  max-width: 420px;
}


/* ============================================================
   6. PRODUCT HEADER
   ============================================================ */
.bidonex-kreator .product-header{display:flex;flex-direction:column}
.bidonex-kreator .product-title{margin-bottom:4px;line-height:1}
.bidonex-kreator .product-title img{
  height:22px;width:auto;display:block;max-width:100%;
  filter:brightness(0) invert(1);
}
.bidonex-kreator .product-sub{
  font-family:'Roboto',sans-serif;font-size:12px;font-weight:500;
  letter-spacing:2px;color:var(--text-2);text-transform:uppercase;
  margin-bottom:2px;
}
.bidonex-kreator .product-stars{display:flex;align-items:center;gap:4px}
.bidonex-kreator .product-stars span{
  width:13px;height:13px;display:block;flex-shrink:0;
  background:#C9A84C;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 20 19'%3E%3Cpath fill='white' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 20 19'%3E%3Cpath fill='white' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") center/contain no-repeat;
}



/* ============================================================
   7. CONFIG SECTIONS & SPLIT ROWS
   ============================================================ */
.bidonex-kreator .cfg-section{display:flex;flex-direction:column;min-width:0}
.bidonex-kreator .cfg-label{
  font-family:'Roboto',sans-serif;font-size:11px;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;color:var(--text-2);
  margin-bottom:clamp(10px,1.2vh,14px);
}
.bidonex-kreator .cfg-row-split{display:flex;gap:clamp(16px,2.5vw,28px)}
.bidonex-kreator .cfg-row-split>.cfg-section{flex:0 0 auto;min-width:0}


/* ============================================================
   8. TOGGLE CONTROLS
   ============================================================ */
.bidonex-kreator .toggle-group{
  display:flex;width:100%;
  border:1px solid var(--border-control);border-radius:6px;
}
.bidonex-kreator .toggle-btn{
  flex:1 1 auto;min-width:0;
  padding:9px 12px;background:transparent;border:none;
  min-height:44px;
  color:var(--text-2);font-family:'Roboto',sans-serif;
  font-size:12px;font-weight:600;cursor:pointer;
  transition:all .25s var(--ease);white-space:nowrap;
  text-align:center;text-transform:uppercase;letter-spacing:1px;
}
.bidonex-kreator .toggle-btn:first-child{border-radius:5px 0 0 5px}
.bidonex-kreator .toggle-btn:last-child{border-radius:0 5px 5px 0}
.bidonex-kreator .toggle-btn.active{background:rgba(255,255,255,.08);color:var(--text)}
.bidonex-kreator .toggle-btn:not(:last-child){border-right:1px solid var(--border-control)}

/* 4-button model toggle — tighter */
.bidonex-kreator .toggle-group-models{
  width:max-content;
}
.bidonex-kreator .toggle-group-models .toggle-btn{
  flex:0 0 54px;
  min-width:54px;
  padding:9px 8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0;
  text-transform:none;
}
@media(max-width:540px){
  .bidonex-kreator .toggle-group-models .toggle-btn{font-size:9.5px;padding:8px 4px}
}

/* ============================================================
   9. QUANTITY INPUT
   ============================================================ */
.bidonex-kreator .qty-wrap{
  display:inline-grid;
  grid-template-columns:44px 56px 44px;
  align-items:stretch;
  width:max-content;
  overflow:hidden;
  border:1px solid var(--border-control);border-radius:6px;
}
.bidonex-kreator .qty-btn:first-child{border-radius:5px 0 0 5px}
.bidonex-kreator .qty-btn:last-child{border-radius:0 5px 5px 0}
.bidonex-kreator .qty-btn{
  width:44px;height:44px;background:transparent;border:none;
  min-width:0;min-height:0;
  color:var(--text-2);font-size:16px;cursor:pointer;
  transition:all .2s;display:flex;align-items:center;justify-content:center;
}
.bidonex-kreator .qty-btn:hover{background:rgba(255,255,255,.06);color:var(--text)}
.bidonex-kreator .qty-val{
  width:56px;max-width:none;height:44px;text-align:center;background:transparent;
  border:none;
  border-left:1px solid var(--border-control);
  border-right:1px solid var(--border-control);
  color:var(--text);font-family:'Roboto',sans-serif;
  font-size:13px;font-weight:500;
  -moz-appearance:textfield;
}
.bidonex-kreator .qty-val::-webkit-inner-spin-button,
.bidonex-kreator .qty-val::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}

.bidonex-kreator .carton-info {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.3px;
}


/* ============================================================
   10. SWATCH GRID & SWATCHES
   ============================================================ */
.bidonex-kreator .swatch-grid{
  display:grid;
  grid-template-columns:repeat(6, 44px);
  gap:clamp(6px,0.8vh,10px) 8px;
}

.bidonex-kreator .sw{
  --sw-padding:7px;
  width:44px;height:44px;padding:var(--sw-padding);
  border-radius:50%;border:none;
  background:transparent;
  cursor:pointer;position:relative;flex-shrink:0;
  transition:transform .15s var(--ease);
  -webkit-appearance:none;appearance:none;
  display:flex;align-items:center;justify-content:center;
}
.bidonex-kreator .sw-svg{
  width:100%;height:100%;border-radius:50%;
  display:block;object-fit:contain;
  transition:box-shadow .15s var(--ease);
}
.bidonex-kreator .sw:hover{
  transform:scale(1.12);
  z-index:10;
}
.bidonex-kreator .sw:active{transform:translateY(-1px) scale(.92);transition-duration:.1s}
.bidonex-kreator .sw.active{
  transform:scale(1.08);
}
.bidonex-kreator .sw.active .sw-svg{
  box-shadow:
    0 0 0 2.5px var(--bg),
    0 0 0 4.5px var(--accent),
    0 4px 14px rgba(0,0,0,.20);
}
.bidonex-kreator .sw.active:hover{transform:scale(1.14)}

/* Dark swatch visibility ring */
.bidonex-kreator .sw.dark-sw .sw-svg{
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.bidonex-kreator .sw.dark-sw.active .sw-svg{
  box-shadow:
    0 0 0 2.5px var(--bg),
    0 0 0 4.5px var(--accent),
    0 4px 14px rgba(0,0,0,.20);
}

/* Metallic sheen */
.bidonex-kreator .sw.metallic::before{
  content:"";position:absolute;inset:var(--sw-padding);border-radius:inherit;
  background:linear-gradient(165deg,rgba(255,255,255,.08) 0%,rgba(255,255,255,.02) 30%,transparent 55%,rgba(255,255,255,.01) 80%,transparent);
  pointer-events:none;z-index:1;
}

/* Checkmark overlay */
.bidonex-kreator .sw::after{
  content:"";position:absolute;inset:var(--sw-padding);border-radius:inherit;
  background:rgba(0,0,0,.22) url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 7l2.5 2.5L10.5 5' stroke='white' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
  opacity:0;transform:scale(.4);
  transition:opacity .2s var(--ease),transform .35s var(--ease-spring);
  pointer-events:none;z-index:3;
}
.bidonex-kreator .sw.active::after{opacity:1;transform:scale(1)}

/* Grouped labeled swatches (Kolor Pojemnika) */
.bidonex-kreator .swatch-labeled-grid{display:flex;gap:20px;flex-wrap:wrap}
.bidonex-kreator .swatch-group{display:flex;flex-direction:column;align-items:center;gap:8px}
.bidonex-kreator .swatch-group-dots{display:flex;gap:8px}
.bidonex-kreator .swatch-group-label{
  font-family:'Roboto',sans-serif;font-size:10px;font-weight:600;
  letter-spacing:.5px;text-transform:uppercase;color:var(--text-2);white-space:nowrap;
}


/* ============================================================
   11. SWATCH TOOLTIPS
   ============================================================ */
.bidonex-kreator .sw-tooltip{
  position:absolute;top:calc(100% + 6px);left:50%;
  transform:translateX(-50%) translateY(-4px);
  padding:4px 10px;
  background:rgba(14,14,20,.92);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.08);border-radius:6px;
  font-family:'Roboto',sans-serif;font-size:10.5px;font-weight:500;
  letter-spacing:.3px;color:rgba(240,238,232,.8);
  white-space:nowrap;pointer-events:none;
  opacity:0;transition:opacity .2s var(--ease),transform .25s var(--ease);
  z-index:20;
  max-width:160px;overflow:hidden;text-overflow:ellipsis;
}
.bidonex-kreator .sw-tooltip::after{
  content:"";position:absolute;bottom:100%;left:50%;transform:translateX(-50%);
  border:4px solid transparent;border-bottom-color:rgba(14,14,20,.92);
}
.bidonex-kreator .sw:hover .sw-tooltip{opacity:1;transform:translateX(-50%) translateY(0)}


/* ============================================================
   12. LOGO UPLOAD CONTROLS
   ============================================================ */
.bidonex-kreator .logo-upload-area{display:flex;align-items:center;gap:8px;flex-wrap:wrap;position:relative}
.bidonex-kreator .logo-upload-area::after{
  content:attr(data-format-info);position:absolute;left:0;bottom:calc(100% + 8px);
  width:min(330px,calc(100vw - 48px));padding:8px 10px;border-radius:6px;
  background:rgba(14,14,20,.96);border:1px solid rgba(255,255,255,.1);
  color:rgba(240,238,232,.86);font-size:10.5px;line-height:1.35;font-weight:500;
  box-shadow:0 8px 24px rgba(0,0,0,.22);opacity:0;pointer-events:none;
  transform:translateY(4px);transition:opacity .18s var(--ease),transform .18s var(--ease);z-index:80;
}
.bidonex-kreator .logo-upload-area:hover::after,.bidonex-kreator .logo-upload-area:focus-within::after{opacity:1;transform:translateY(0)}
.bidonex-kreator .logo-upload-btn{
  display:flex;align-items:center;gap:6px;
  padding:0 14px;min-height:44px;border-radius:6px;
  border:1.5px dashed rgba(255,255,255,.15);
  background:transparent;color:var(--text-2);
  font-family:'Roboto',sans-serif;font-size:11.5px;font-weight:600;
  cursor:pointer;transition:all .3s var(--ease);
  white-space:nowrap;-webkit-appearance:none;appearance:none;
  min-width:0;flex-shrink:1;overflow:hidden;text-overflow:ellipsis;
  text-transform:uppercase;letter-spacing:1px;
}
.bidonex-kreator .logo-upload-smart{justify-content:space-between;padding:0 8px 0 12px;border-style:solid;background:rgba(255,255,255,.66)}
.bidonex-kreator .logo-upload-main{display:flex;align-items:center;gap:8px;min-width:0;overflow:hidden;text-overflow:ellipsis}
.bidonex-kreator .logo-upload-main span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.bidonex-kreator .logo-upload-badge{font-size:9px;font-weight:800;letter-spacing:.6px;color:#fff;background:var(--accent);border-radius:999px;padding:4px 6px;line-height:1;flex:0 0 auto}
.bidonex-kreator .logo-upload-btn:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-soft)}
.bidonex-kreator .logo-upload-smart:hover{background:#fff;border-color:rgba(227,30,37,.38)}

.bidonex-kreator .logo-tray-btn{
  width:32px;height:32px;border-radius:50%;
  min-width:44px;min-height:44px;
  border:1px solid var(--border-control);background:rgba(255,255,255,.04);
  color:var(--text-2);display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:all .3s var(--ease);flex-shrink:0;
  -webkit-appearance:none;appearance:none;font-size:14px;line-height:1;
}
.bidonex-kreator .logo-tray-btn:hover{border-color:rgba(227,30,37,.4);color:var(--accent);background:var(--accent-soft)}
.bidonex-kreator .logo-tray-btn.danger:hover{border-color:rgba(198,40,40,.45);color:#c62828;background:rgba(198,40,40,.08)}

.bidonex-kreator .logo-status{font-size:11px;color:var(--text-2);margin-top:6px;min-height:0}
.bidonex-kreator .logo-status:not(:empty){min-height:16px}


/* ============================================================
   13. CTA BUTTON
   ============================================================ */
.bidonex-kreator .cta-order{
  margin-top: auto; /* Push down */
  margin-bottom: auto; /* Push up — together they vertically center the element in available free space */
  width:100%;padding:clamp(10px,1.2vh,15px) 8px;border-radius:8px;border:none;flex-shrink:0;
  background:linear-gradient(
    135deg,
    #e31e25 0%,
    #e31e25 35%,
    #e31e25 55%,
    #e31e25 80%,
    #e31e25 100%
  );
  color:#fff;
  font-family:'Roboto',sans-serif;font-size:12.5px;font-weight:700;
  letter-spacing:1.5px;text-transform:uppercase;
  cursor:pointer;
  transition:all .35s var(--ease);
  position:relative;overflow:hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  white-space:normal;line-height:1.4;
}
.bidonex-kreator .cta-order:hover{
  background:linear-gradient(
    135deg,
    #e31e25 0%,
    #e31e25 35%,
    #e31e25 55%,
    #e31e25 80%,
    #e31e25 100%
  );
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transform:translateY(-1px);
}
.bidonex-kreator .cta-order:active{
  background:linear-gradient(
    135deg,
    #e31e25 0%,
    #e31e25 35%,
    #e31e25 55%,
    #e31e25 80%,
    #e31e25 100%
  );
  transform:translateY(0);
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.bidonex-kreator .cta-order:disabled{
  background:#160430;
  color:rgba(255,255,255,.72);
  box-shadow:none;
  cursor:not-allowed;
}



/* ============================================================
   14. LOGO LAYER (on shaker)
   ============================================================ */

/* Cap and cork layers render below logo (logo z-index:6) */
.bidonex-kreator #sbx-layer-cap,.bidonex-kreator [data-bx="layer-cap"]{ z-index: 4; }
.bidonex-kreator #sbx-layer-cork,.bidonex-kreator [data-bx="layer-cork"]{ z-index: 5; }

.bidonex-kreator .logo-layer{
  position:absolute;left:50%;top:55%;width:30%;
  transform:translate(-50%,-50%);
  pointer-events:none;z-index:6;transition:opacity .35s var(--ease);
}
.bidonex-kreator .logo-layer.active{pointer-events:auto;cursor:grab;user-select:none}
.bidonex-kreator .logo-layer.dragging{cursor:grabbing}
.bidonex-kreator .logo-layer.hidden{opacity:0;pointer-events:none!important}
.bidonex-kreator .logo-img{
  width:100%;height:auto;pointer-events:none;
  -webkit-user-drag:none;user-select:none;display:block;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.12));
}

/* Transform handles */
.bidonex-kreator .logo-handles{position:absolute;inset:0;pointer-events:none;opacity:0;transition:opacity .25s var(--ease)}
.bidonex-kreator .logo-layer.active .logo-handles{opacity:1}
.bidonex-kreator .logo-bbox{position:absolute;inset:-1px;border:1.5px solid rgba(227,30,37,.45);pointer-events:none}

.bidonex-kreator .logo-handle{
  position:absolute;width:10px;height:10px;border-radius:2px;
  background:#fff;border:1.5px solid rgba(0,0,0,.2);
  pointer-events:auto;z-index:4;
  box-shadow:0 1px 3px rgba(0,0,0,.3);
  transition:transform .15s var(--ease-spring),box-shadow .15s;
}
.bidonex-kreator .logo-handle::before{content:"";position:absolute;inset:-17px}
.bidonex-kreator .logo-handle.dragging{box-shadow:0 0 0 3px rgba(227,30,37,.35),0 2px 8px rgba(0,0,0,.4)}
.bidonex-kreator .logo-handle-tl{top:0;left:0;transform:translate(-50%,-50%);cursor:nw-resize}
.bidonex-kreator .logo-handle-tl.dragging{transform:translate(-50%,-50%) scale(1.5)}
.bidonex-kreator .logo-handle-tr{top:0;left:100%;transform:translate(-50%,-50%);cursor:ne-resize}
.bidonex-kreator .logo-handle-tr.dragging{transform:translate(-50%,-50%) scale(1.5)}
.bidonex-kreator .logo-handle-bl{top:100%;left:0;transform:translate(-50%,-50%);cursor:sw-resize}
.bidonex-kreator .logo-handle-bl.dragging{transform:translate(-50%,-50%) scale(1.5)}
.bidonex-kreator .logo-handle-br{top:100%;left:100%;transform:translate(-50%,-50%);cursor:se-resize}
.bidonex-kreator .logo-handle-br.dragging{transform:translate(-50%,-50%) scale(1.5)}

/* Rotation handle */
.bidonex-kreator .logo-rot-stem{
  position:absolute;bottom:100%;left:50%;width:1px;height:28px;
  background:rgba(227,30,37,.3);pointer-events:none;transform:translateX(-50%);
}
.bidonex-kreator .logo-handle-rot{
  position:absolute;bottom:calc(100% + 24px);left:50%;transform:translate(-50%,0);
  width:18px;height:18px;border-radius:50%;background:var(--accent);
  border:2px solid var(--bg);cursor:grab;box-shadow:0 1px 4px rgba(0,0,0,.4);
}
.bidonex-kreator .logo-handle-rot::before{content:"";position:absolute;inset:-13px;border-radius:50%}
.bidonex-kreator .logo-handle-rot::after{
  content:"";position:absolute;inset:3px;
  border:1.5px solid var(--bg);border-radius:50%;
  border-top-color:transparent;transform:rotate(-45deg);
}
.bidonex-kreator .logo-handle-rot.dragging{
  transform:translate(-50%,0) scale(1.3);
  box-shadow:0 0 0 4px rgba(227,30,37,.3),0 2px 8px rgba(0,0,0,.4);
}

/* Snap guides */
.bidonex-kreator .logo-guide{position:absolute;pointer-events:none;opacity:0;transition:opacity .12s;z-index:3}
.bidonex-kreator .logo-guide-h{left:0;right:0;top:50%;height:1px;background:linear-gradient(90deg,transparent 10%,var(--accent) 30%,var(--accent) 70%,transparent 90%)}
.bidonex-kreator .logo-guide-v{top:0;bottom:0;left:50%;width:1px;background:linear-gradient(180deg,transparent 10%,var(--accent) 30%,var(--accent) 70%,transparent 90%)}
.bidonex-kreator .logo-guide.visible{opacity:.45}

/* Info badge */
.bidonex-kreator .logo-badge{
  position:absolute;pointer-events:none;z-index:10;
  background:rgba(14,14,20,.88);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(227,30,37,.25);border-radius:6px;
  padding:2px 8px;font-family:'Roboto',sans-serif;font-size:10px;
  font-weight:600;letter-spacing:.5px;color:#fff;
  opacity:0;transition:opacity .12s;white-space:nowrap;
  transform:translateX(-50%);
}
.bidonex-kreator .logo-badge.visible{opacity:1}


/* ============================================================
   15. FOCUS STATES
   ============================================================ */
.bidonex-kreator .sw:focus-visible,
.bidonex-kreator .toggle-btn:focus-visible,
.bidonex-kreator .cta-order:focus-visible,
.bidonex-kreator .logo-upload-btn:focus-visible,
.bidonex-kreator .qty-btn:focus-visible,
.bidonex-kreator .model-label:focus-visible{outline:2px solid var(--accent);outline-offset:3px}


/* ============================================================
   16. KEYFRAMES
   ============================================================ */
@keyframes fadeDown{from{opacity:0;transform:translateY(-16px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}
@keyframes floatIn{
  0%{opacity:0;transform:translateY(50px) scale(.94);filter:blur(8px)}
  60%{filter:blur(0)}
  80%{transform:translateY(-4px) scale(1.01)}
  100%{opacity:1;transform:translateY(0) scale(1);filter:blur(0)}
}
@keyframes float{
  0%,100%{transform:translateY(0)}
  25%{transform:translateY(-5px) rotate(.3deg)}
  50%{transform:translateY(-8px)}
  75%{transform:translateY(-3px) rotate(-.2deg)}
}
@keyframes breathe{
  0%,100%{transform:translate(-50%,-55%) scale(1);opacity:.3}
  50%{transform:translate(-50%,-55%) scale(1.12);opacity:.45}
}
@keyframes breatheSec{
  0%,100%{transform:translate(0,0) scale(1);opacity:.10}
  50%{transform:translate(8px,-6px) scale(1.08);opacity:.16}
}
@keyframes atmoPulse{
  0%{opacity:.10;transform:translate(-50%,-50%) scale(1)}
  30%{opacity:.22;transform:translate(-50%,-50%) scale(1.12)}
  100%{opacity:.10;transform:translate(-50%,-50%) scale(1)}
}



/* ============================================================
   17. RESPONSIVE
   ============================================================ */

/* Tablet / small laptop — stack vertically */
@media (max-width: 960px) {
  .bidonex-kreator .hero{flex-direction:column;height:auto;min-height:100vh;min-height:100dvh}
  .bidonex-kreator .hero-left{flex:none;height:50vh;min-height:360px;overflow:hidden;flex-direction:column}
  .bidonex-kreator .hero-right{
    flex:none;width:100%;
    border-left:none;border-top:1px solid var(--border);
    animation:none;
  }
  .bidonex-kreator .cfg-wrap{padding:28px 32px 40px}
  .bidonex-kreator .cfg-row-split{gap:20px}
  .bidonex-kreator .shaker{height:clamp(330px,57vh,540px)}
  .bidonex-kreator .grid-bg{display:none}
  .bidonex-kreator #sbx-particles,.bidonex-kreator [data-bx="particles"]{opacity:.4}
  .bidonex-kreator .shaker-shadow{width:140px}
  .bidonex-kreator .shaker-reflection{width:100px}

  /* Overlays 960px */
  .bidonex-kreator .sx-configurator-overlay { width: 136px; left: 3%; }
  .bidonex-kreator .bidonex-stage-mark { width: 156px; left: 3%; }
  .bidonex-kreator .bidonex-stage-main { font-size: 38px; }
  .bidonex-kreator .bidonex-stage-slash { width: 68px; height: 6px; box-shadow:9px 0 0 #111; }
  .bidonex-kreator .model-labels-container { right: 3%; width: 150px; gap: 10px; }
  .bidonex-kreator .download-viz-wrap { right: 3%; bottom: 30px; }
  .bidonex-kreator .model-label { width: 138px; min-height: 38px; }
  .bidonex-kreator .model-label strong { font-size: 26px; }
  .bidonex-kreator .vol-label { font-size: 14px; }
}

/* Narrow tablet — stack split rows */
@media(max-width:700px){
  .bidonex-kreator .cfg-row-split{flex-direction:column;gap:20px}

  /* Overlays 700px */
  .bidonex-kreator .sx-configurator-overlay { width: 120px; left: 2%; }
  .bidonex-kreator .bidonex-stage-mark { width: 132px; left: 2%; }
  .bidonex-kreator .bidonex-stage-logo { width: 64px; }
  .bidonex-kreator .bidonex-stage-main { font-size: 30px; }
  .bidonex-kreator .bidonex-stage-slash { width: 58px; height: 5px; box-shadow:8px 0 0 #111; }
  .bidonex-kreator .model-labels-container { right: 2%; width: 134px; gap: 8px; }
  .bidonex-kreator .download-viz-wrap { right: 2%; bottom: 30px; }
  .bidonex-kreator .model-label { width: 124px; min-height: 36px; }
  .bidonex-kreator .model-label strong { font-size: 24px; }
  .bidonex-kreator .vol-label { font-size: 12px; }
}

/* Phone — tighten everything */
@media(max-width:540px){
  .bidonex-kreator .cfg-wrap{padding:24px 18px 44px;gap:18px}
  .bidonex-kreator .product-title{font-size:22px}
  .bidonex-kreator .product-stars span{width:11px;height:11px}
  .bidonex-kreator .product-stars{gap:3px}
  .bidonex-kreator .toggle-btn{padding:9px 10px;font-size:11px}
  .bidonex-kreator .swatch-grid{gap:10px 7px}
  .bidonex-kreator .swatch-labeled-grid{gap:14px}
  .bidonex-kreator .swatch-group-label{font-size:9px}
  .bidonex-kreator .logo-upload-btn{padding:0 12px;height:34px;min-height:44px;font-size:11px}
  .bidonex-kreator .logo-tray-btn{width:30px;height:30px;min-width:44px;min-height:44px;font-size:13px}

  /* Overlays 540px */
  .bidonex-kreator .floor-text { font-size: clamp(42px, 9vw, 72px); letter-spacing: 6px; }
  .bidonex-kreator .sx-configurator-overlay { width: 102px; left: 1.5%; }
  .bidonex-kreator .bidonex-stage-mark { width: 104px; left: 1.5%; top: 52%; }
  .bidonex-kreator .bidonex-stage-logo { width: 52px; margin-bottom: 3px; }
  .bidonex-kreator .bidonex-stage-main { font-size: 23px; }
  .bidonex-kreator .bidonex-stage-slash { width: 42px; height: 4px; margin-top: 6px; box-shadow:6px 0 0 #111; }
  .bidonex-kreator .bidonex-stage-small { font-size: 6px; letter-spacing: .45px; }
  .bidonex-kreator .model-labels-container { right: 1.5%; width: 116px; gap: 7px; }
  .bidonex-kreator .download-viz-wrap { right: 1.5%; bottom: 30px; }
  .bidonex-kreator .model-label { width: 106px; min-height: 32px; grid-template-columns:10px 1fr auto; gap:5px; padding:0 7px; }
  .bidonex-kreator .model-label-title { font-size: 7px; padding-right: 30px; margin-right: 4px; }
  .bidonex-kreator .model-label-title::after { width: 22px; height: 3px; box-shadow:4px 0 0 #111; }
  .bidonex-kreator .model-label span { width:8px; height:8px; border-width:1.5px; }
  .bidonex-kreator .model-label strong { font-size: 22px; }
  .bidonex-kreator .model-label em { font-size: 7px; }
  .bidonex-kreator .model-label:nth-of-type(2) { transform:rotate(1.1deg) translateX(0); }
  .bidonex-kreator .model-label:nth-of-type(4) { transform:rotate(1.3deg) translateX(0); }
  .bidonex-kreator .model-label.active { box-shadow:6px 0 0 #e31e25, 0 12px 22px rgba(0,0,0,.17); transform:rotate(-2deg) translateX(-6px); }
  .bidonex-kreator .vol-label { font-size: 11px; }
}

/* Ultra-narrow phone */
@media(max-width:360px){
  .bidonex-kreator .cfg-wrap{padding:20px 14px 40px;gap:16px}
  .bidonex-kreator .product-title{font-size:20px;letter-spacing:1.5px}
  .bidonex-kreator .product-sub{font-size:11px;letter-spacing:1.5px}
  .bidonex-kreator .cfg-label{font-size:10px;letter-spacing:1.2px;margin-bottom:10px}
  .bidonex-kreator .toggle-btn{font-size:10.5px;padding:8px 6px;min-height:44px}
  .bidonex-kreator .cta-order{padding:13px 8px;font-size:11px;letter-spacing:1px}

  /* Overlays 360px */
  .bidonex-kreator .floor-text { font-size: clamp(32px, 8vw, 52px); letter-spacing: 4px; }
  .bidonex-kreator .sx-configurator-overlay { width: 84px; left: 1%; }
  .bidonex-kreator .bidonex-stage-mark { width: 86px; left: 1%; top: 52%; }
  .bidonex-kreator .bidonex-stage-logo { width: 44px; }
  .bidonex-kreator .bidonex-stage-main { font-size: 19px; }
  .bidonex-kreator .bidonex-stage-slash { width: 34px; height: 3px; margin-top: 5px; box-shadow:5px 0 0 #111; }
  .bidonex-kreator .bidonex-stage-small { display:none; }
  .bidonex-kreator .model-labels-container { right: 1%; width: 96px; gap: 5px; }
  .bidonex-kreator .download-viz-wrap { right: 1%; bottom: 30px; }
  .bidonex-kreator .model-label { width: 90px; min-height: 28px; grid-template-columns:9px 1fr auto; gap:4px; padding:0 6px; }
  .bidonex-kreator .model-label-title { display:none; }
  .bidonex-kreator .model-label span { width:7px; height:7px; }
  .bidonex-kreator .model-label strong { font-size: 19px; }
  .bidonex-kreator .model-label em { font-size: 6px; }
  .bidonex-kreator .vol-label { font-size: 9px; }

  .bidonex-kreator .shaker { height: clamp(300px, 50vh, 480px); }
  .bidonex-kreator .shaker-float { margin-top: 15px; }

  .bidonex-kreator .toggle-group-models { flex-wrap: wrap; border: none; background: transparent; gap: 4px; }
  .bidonex-kreator .toggle-group-models .toggle-btn {
    flex: 1 1 calc(50% - 4px);
    border: 1px solid var(--border-control) !important;
    border-radius: 4px !important;
    margin: 0;
  }
  .bidonex-kreator .toggle-group-models .toggle-btn.active {
    border-color: var(--accent) !important;
    background: var(--accent-soft);
  }
}

/* Short viewports (landscape phones) */
@media(max-height:500px) and (max-width:960px){
  .bidonex-kreator .hero-left{height:40vh;min-height:240px}
  .bidonex-kreator .shaker{height:clamp(240px,51vh,390px)}
}

/* Short desktop viewports — extra tightening beyond clamp */
@media(max-height:800px) and (min-width:961px){
  .bidonex-kreator .product-header{margin-bottom:0}
  .bidonex-kreator .cfg-label{font-size:10px;letter-spacing:1.2px}
  .bidonex-kreator .order-check-text{font-size:11px}
  .bidonex-kreator .order-success-title{font-size:16px}
  .bidonex-kreator .cfg-wrap{padding:14px 34px 18px;gap:12px}
  .bidonex-kreator .product-title img{height:18px}
  .bidonex-kreator .product-sub{font-size:11px;letter-spacing:1.5px}
  .bidonex-kreator .cfg-label{margin-bottom:8px}
  .bidonex-kreator .swatch-grid{gap:10px 14px}
  .bidonex-kreator .swatch-labeled-grid{gap:14px}
  .bidonex-kreator .qty-wrap{grid-template-columns:40px 56px 40px}
  .bidonex-kreator .qty-btn{width:40px;height:36px}
  .bidonex-kreator .qty-val{width:56px;height:36px}
  .bidonex-kreator .order-section{padding-top:6px}
}


/* ============================================================
   18. REDUCED MOTION & TOUCH
   ============================================================ */
@media(prefers-reduced-motion:reduce){
  .bidonex-kreator *,.bidonex-kreator *::before,.bidonex-kreator *::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}

@media(hover:none){
  .bidonex-kreator .sw:hover{
    transform:none;
    box-shadow:0 0 0 0 transparent,0 0 0 0 var(--bg),0 0 0 0 var(--accent),0 2px 6px rgba(0,0,0,.15);
  }
  .bidonex-kreator .sw.dark-sw:hover{
    box-shadow:0 0 0 1px rgba(255,255,255,.06),0 0 0 0 var(--bg),0 0 0 0 var(--accent),0 2px 6px rgba(0,0,0,.15);
  }
  .bidonex-kreator .sw-tooltip{display:none}
  .bidonex-kreator .cta-order:hover{transform:none;box-shadow:0 1px 3px rgba(0,0,0,.2)}
}


/* ============================================================
   19. INLINE ORDER FORM
   ============================================================ */

/* Section separator */
.bidonex-kreator .order-section{
  padding-top:clamp(6px,0.8vh,14px);
  margin-top:0;
  /* Removed the big bottom padding here that was causing the gap */
  padding-bottom:0;
  border-top:1px solid rgba(255,255,255,0.06);
}

/* Section heading — distinct from field labels */
.bidonex-kreator .order-section > .cfg-label{
  font-size:11px;
  letter-spacing:2px;
  color:var(--text);
  margin-bottom:clamp(6px,0.8vh,12px);
}

/* Field wrapper */
.bidonex-kreator .order-field{
  display:flex;flex-direction:column;
  margin-bottom:clamp(4px,0.6vh,12px);
}

/* Label */
.bidonex-kreator .order-label{
  font-family:'Roboto',sans-serif;font-size:10px;font-weight:600;
  letter-spacing:1.5px;text-transform:uppercase;color:var(--text-2);
  margin-bottom:3px;
}



/* Input */
.bidonex-kreator .order-input{
  height:clamp(32px,3.5vh,38px);padding:0 14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.13);
  border-radius:6px;
  color:var(--text);
  font-family:'Roboto',sans-serif;font-size:13px;font-weight:400;
  width:100%;box-sizing:border-box;
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease);
  -webkit-appearance:none;appearance:none;
}
.bidonex-kreator .order-input::placeholder{color:var(--text-3);font-weight:300}
.bidonex-kreator .order-input:hover{border-color:rgba(255,255,255,.16)}
.bidonex-kreator .order-input:focus-visible{
  border-color:#e31e25;
  box-shadow:0 0 0 3px rgba(227,30,37,.15);
  outline:none;
  background:rgba(255,255,255,.05);
}
.bidonex-kreator .order-input.invalid{
  border-color:rgba(255,80,80,.5);
  box-shadow:0 0 0 3px rgba(255,80,80,.08);
}

/* Textarea */
.bidonex-kreator .order-textarea{font-family:'Roboto',sans-serif;
  height:auto;
  min-height:clamp(40px,5vh,64px);max-height:200px;
  resize:vertical;
  padding:11px 14px;
  line-height:1.55;
}

/* Field error */
.bidonex-kreator .field-error{
  font-size:11px;color:#c62828;margin-top:5px;
  min-height:0;opacity:0;
  transition:opacity .2s var(--ease);
}
.bidonex-kreator .field-error.visible{opacity:1}

/* Newsletter checkbox */
.bidonex-kreator .order-check-row{
  display:flex;align-items:flex-start;gap:10px;
  margin-top:2px;margin-bottom:0;
  cursor:pointer;
}
.bidonex-kreator .order-check-input{
  position:absolute;opacity:0;width:0;height:0;pointer-events:none;
}
.bidonex-kreator .order-check-box{
  flex-shrink:0;
  width:18px;height:18px;margin-top:1px;
  border:1.5px solid var(--border-control);
  border-radius:4px;
  background:rgba(255,255,255,.03);
  display:flex;align-items:center;justify-content:center;
  transition:all .25s var(--ease);
}
.bidonex-kreator .order-check-box svg{
  width:11px;height:11px;
  stroke:#FFFFFF;stroke-width:2.5;
  fill:none;stroke-linecap:round;stroke-linejoin:round;
  opacity:0;transform:scale(.3);
  transition:opacity .2s var(--ease),transform .3s var(--ease-spring);
}
.bidonex-kreator .order-check-input:checked + .order-check-box{
  background:#e31e25;
  border-color:#e31e25;
  box-shadow:0 0 8px rgba(227,30,37,.15);
}
.bidonex-kreator .order-check-input:checked + .order-check-box svg{
  opacity:1;transform:scale(1);
}
.bidonex-kreator .order-check-input:focus-visible + .order-check-box{
  outline:2px solid #e31e25;outline-offset:3px;
}
.bidonex-kreator .order-check-text{
  font-size:12.5px;font-weight:400;line-height:1.5;
  color:rgba(240,238,232,.85);
  user-select:none;-webkit-user-select:none;
}

/* Success state */
.bidonex-kreator .order-success{
  display:none;
  flex-direction:column;align-items:center;
  text-align:center;
  padding:12px 0;
  opacity:0;transform:scale(.95);
  transition:opacity .4s var(--ease),transform .4s var(--ease-spring);
}
.bidonex-kreator .order-success.show{
  opacity:1;transform:scale(1);
}
.bidonex-kreator .order-success-icon{
  width:52px;height:52px;border-radius:50%;
  background:var(--accent);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  box-shadow:0 0 24px var(--accent-soft);
}
.bidonex-kreator .order-success-icon svg{
  width:26px;height:26px;
  stroke:#fff;stroke-width:2.5;
  fill:none;stroke-linecap:round;stroke-linejoin:round;
}
.bidonex-kreator .order-success-title{
  font-family:'Roboto',sans-serif;font-size:20px;font-weight:700;
  letter-spacing:.5px;margin-bottom:6px;
}
.bidonex-kreator .order-success-text{font-size:13px;color:var(--text-2);line-height:1.5}

/* Inline form responsive */
@media(max-width:960px){
  .bidonex-kreator .order-field{margin-bottom:16px}
}
@media(max-width:700px){
  .bidonex-kreator .order-field{margin-bottom:14px}
}
@media(max-width:540px){
  .bidonex-kreator .order-field{margin-bottom:12px}
  .bidonex-kreator .order-input{height:40px;font-size:12.5px}
  .bidonex-kreator .order-textarea{min-height:70px}
  .bidonex-kreator .order-check-row{gap:8px}
  .bidonex-kreator .order-check-text{font-size:12px}
  .bidonex-kreator .order-label{font-size:10.5px}
  .bidonex-kreator .order-success-title{font-size:18px}
}
@media(max-width:360px){
  .bidonex-kreator .order-field{margin-bottom:10px}
  .bidonex-kreator .order-input{height:38px;font-size:12px}
  .bidonex-kreator .order-label{font-size:10px;letter-spacing:1.2px;margin-bottom:6px}
  .bidonex-kreator .order-success-title{font-size:16px}
  .bidonex-kreator .cfg-wrap{padding:14px 34px 18px;gap:12px}
  .bidonex-kreator .product-title img{height:18px}
  .bidonex-kreator .product-sub{font-size:11px;letter-spacing:1.5px}
  .bidonex-kreator .cfg-label{margin-bottom:8px}
  .bidonex-kreator .swatch-grid{gap:10px 14px}
  .bidonex-kreator .swatch-labeled-grid{gap:14px}
  .bidonex-kreator .qty-wrap{grid-template-columns:40px 56px 40px}
  .bidonex-kreator .qty-btn{width:40px;height:36px}
  .bidonex-kreator .qty-val{width:56px;height:36px}
  .bidonex-kreator .order-section{padding-top:6px}
}

/* Cork section hide/show for flat cap — overflow:hidden on .hidden-cork .cork-inner enables grid-template-rows collapse animation without permanently clipping swatch rings; padding on .swatch-grid gives ring and tooltip clearance */
.bidonex-kreator #sbx-section-cork .cork-inner,.bidonex-kreator [data-bx="section-cork"] .cork-inner{display:flex;flex-direction:column;min-height:0;}
.bidonex-kreator #sbx-section-cork.hidden-cork .cork-inner,.bidonex-kreator [data-bx="section-cork"].hidden-cork .cork-inner{overflow:hidden;}
.bidonex-kreator #sbx-section-cork .swatch-grid,.bidonex-kreator [data-bx="section-cork"] .swatch-grid{padding:6px;}
.bidonex-kreator #sbx-section-cork,.bidonex-kreator [data-bx="section-cork"]{
  display:grid;
  grid-template-rows:1fr;
  opacity:1;
  transition:grid-template-rows .45s var(--ease),opacity .3s var(--ease);
}
.bidonex-kreator #sbx-section-cork.hidden-cork,.bidonex-kreator [data-bx="section-cork"].hidden-cork{
  grid-template-rows:0fr;
  opacity:0;
}

/* Unavailable option styling */
.bidonex-kreator .sw.unavailable{opacity:.2;cursor:not-allowed;pointer-events:none}
.bidonex-kreator .toggle-btn.unavailable{opacity:.25;cursor:not-allowed;pointer-events:none}

/* WordPress admin bar offset */
@media screen{body.admin-bar .bidonex-kreator{margin-top:32px}}
@media(max-width:782px){body.admin-bar .bidonex-kreator{margin-top:46px}}

/* ============================================================
   20. GALLERY CAROUSEL
   ============================================================ */
.bidonex-kreator .shaker-gallery {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 580px;
  padding: 0 40px;
  z-index: 10;
}

.bidonex-kreator .gallery-track-viewport {
  flex: 1;
  overflow: hidden;
  padding: 4px 0;
}

.bidonex-kreator .gallery-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s var(--ease);
}

.bidonex-kreator .gallery-thumb {
  flex: 0 0 calc((100% - 32px) / 3);
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.bidonex-kreator .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.bidonex-kreator .gallery-thumb:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.bidonex-kreator .gallery-thumb:hover img {
  transform: scale(1.08);
}

.bidonex-kreator .gallery-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.bidonex-kreator .gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.bidonex-kreator .gallery-arrow svg {
  width: 24px;
  height: 24px;
}

/* ============================================================
   21. LIGHTBOX OVERLAY
   ============================================================ */
.bidonex-kreator .lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bidonex-kreator .lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.bidonex-kreator .lightbox-nav-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  gap: 40px;
}

.bidonex-kreator .lightbox-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.bidonex-kreator .lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-spring);
}

.bidonex-kreator .lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}

.bidonex-kreator .lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  transition: all 0.2s var(--ease);
}

.bidonex-kreator .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.bidonex-kreator .lightbox-nav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.bidonex-kreator .lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.bidonex-kreator .lightbox-nav svg {
  width: 36px;
  height: 36px;
}

/* ============================================================
   22. RESPONSIVE GALLERY
   ============================================================ */
@media (max-width: 960px) {
  .bidonex-kreator .shaker-gallery {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 12px auto 18px;
    width: 100%;
    max-width: 520px;
    padding: 0 16px;
  }
  .bidonex-kreator .gallery-track {
    gap: 12px;
  }
  .bidonex-kreator .gallery-thumb {
    flex: 0 0 calc((100% - 24px) / 3);
  }
}

@media (max-width: 540px) {
  .bidonex-kreator .shaker-gallery {
    gap: 8px;
    padding: 0 10px;
  }
  .bidonex-kreator .gallery-arrow {
    width: 32px;
    height: 32px;
  }
  .bidonex-kreator .lightbox-nav-area {
    padding: 20px;
    gap: 10px;
  }
  .bidonex-kreator .lightbox-nav {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
  }
  .bidonex-kreator .lightbox-nav svg {
    width: 28px;
    height: 28px;
  }
  .bidonex-kreator .lightbox-close {
    top: 15px;
    right: 15px;
  }
}

/* ============================================================
   23. DOWNLOAD BUTTON
   ============================================================ */
.bidonex-kreator .download-viz-wrap {
  position: absolute;
  right: 8%;
  bottom: 4%;
  pointer-events: auto;
  z-index: 15;
}

.bidonex-kreator .download-viz-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  height: 48px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  padding: 0 16px 0 10px;
  color: var(--text);
  gap: 10px;
  box-shadow:
    0 10px 26px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bidonex-kreator .download-viz-btn:hover {
  border-color: rgba(227, 30, 37, 0.42);
  box-shadow:
    0 14px 32px rgba(0,0,0,.16),
    0 0 0 4px rgba(227,30,37,.08),
    inset 0 1px 0 rgba(255,255,255,1);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-2px);
}

.bidonex-kreator .download-viz-btn:active {
  transform: translateY(0);
  box-shadow:
    0 7px 18px rgba(0,0,0,.13),
    0 0 0 3px rgba(227,30,37,.08),
    inset 0 1px 0 rgba(255,255,255,1);
}

.bidonex-kreator .download-viz-btn.capturing {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.bidonex-kreator .download-viz-text {
  font-family: 'Roboto', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: rgba(31, 31, 31, 0.9);
  white-space: nowrap;
}

.bidonex-kreator .download-viz-icon {
  width: 30px;
  height: 30px;
  padding: 6px;
  flex: 0 0 30px;
  color: #fff;
  background: linear-gradient(135deg,#e31e25 0%,#e31e25 100%);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(227,30,37,.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.bidonex-kreator .download-viz-btn:hover .download-viz-icon {
  transform: translateY(1px) scale(1.04);
  box-shadow: 0 7px 18px rgba(227,30,37,.34);
}

@media (max-width: 960px) {
  .bidonex-kreator .download-viz-btn {
    min-width: 160px;
    height: 44px;
    padding: 0 14px 0 8px;
    gap: 8px;
  }
}

@media (max-width: 540px) {
  .bidonex-kreator .download-viz-btn {
    min-width: 148px;
    height: 42px;
    padding: 0 12px 0 8px;
    gap: 7px;
  }
  .bidonex-kreator .download-viz-text {
    font-size: 8.8px;
    letter-spacing: 0.45px;
  }
  .bidonex-kreator .download-viz-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    padding: 5px;
  }
}

@media (max-width: 360px) {
  .bidonex-kreator .download-viz-btn {
    min-width: 140px;
    height: 40px;
    padding: 0 10px 0 7px;
    gap: 6px;
  }
  .bidonex-kreator .download-viz-text {
    font-size: 8px;
    letter-spacing: 0.25px;
  }
  .bidonex-kreator .download-viz-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    padding: 5px;
  }
}

/* Bidonex light version: color-only overrides. */
.bidonex-kreator{
  --bg:#f4f4f4;
  --panel-bg:#ffffff;
  --surface:rgba(255,255,255,0.78);
  --border:rgba(0,0,0,0.12);
  --border-control:rgba(0,0,0,0.28);
  --text:#1f1f1f;
  --text-2:#6f6f6f;
  --text-3:#6f6f6f;
  background:var(--bg);
  color:var(--text);
}

.bidonex-kreator .grid-bg{
  background-image:
    linear-gradient(rgba(0,0,0,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,0,0,.025) 1px,transparent 1px);
}

.bidonex-kreator .product-title img,
.bidonex-kreator .sx-configurator-overlay{
  filter:brightness(0);
}

.bidonex-kreator .hero-right{
  background:var(--panel-bg);
  border-left:1px solid var(--border);
  scrollbar-color:rgba(0,0,0,.16) transparent;
}

.bidonex-kreator .hero-right::-webkit-scrollbar-thumb{background:rgba(0,0,0,.16)}
.bidonex-kreator .toggle-btn.active{background:rgba(0,0,0,.06);color:var(--text)}
.bidonex-kreator .qty-btn:hover{background:rgba(0,0,0,.05);color:var(--text)}
.bidonex-kreator .logo-upload-btn{border-color:rgba(0,0,0,.28)}
.bidonex-kreator .logo-tray-btn{background:rgba(0,0,0,.03)}
.bidonex-kreator .order-section{border-top:1px solid rgba(0,0,0,0.08)}
.bidonex-kreator .order-input{background:#ffffff;border-color:rgba(0,0,0,0.28)}
.bidonex-kreator .order-input:hover{border-color:rgba(0,0,0,.36)}
.bidonex-kreator .order-input:focus-visible{background:#ffffff}
.bidonex-kreator .order-check-box{background:#ffffff}
.bidonex-kreator .order-check-text{color:rgba(31,31,31,.82)}
.bidonex-kreator .gallery-thumb{background:rgba(255,255,255,0.65)}
.bidonex-kreator .gallery-arrow{background:rgba(255,255,255,0.65)}
.bidonex-kreator .gallery-arrow:hover{background:rgba(0,0,0,0.04)}
.bidonex-kreator .download-viz-btn{background:rgba(255,255,255,0.86);border-color:rgba(0,0,0,0.14)}
.bidonex-kreator .download-viz-btn:hover{background:rgba(255,255,255,0.96);border-color:rgba(227,30,37,0.42)}
.bidonex-kreator .download-viz-text{color:rgba(31,31,31,0.9)}
.bidonex-kreator .product-title img.bidonex-logo{filter:none;height:30px}
.bidonex-kreator .sw .sw-svg{
  box-shadow:
    0 0 0 1.5px rgba(0,0,0,.28),
    0 2px 5px rgba(0,0,0,.14);
}
.bidonex-kreator .sw.dark-sw .sw-svg{
  box-shadow:
    0 0 0 1.5px rgba(0,0,0,.38),
    0 2px 5px rgba(0,0,0,.16);
}

/* ============================================================
   23. ORDER FORM — "LINIA" VARIANT (implemented from redesign option 4)
   Minimal underline-only inputs with floating labels, icons,
   center-out animated accent line, and ring-style checkbox.
   Scoped to .order-line-style so existing .order-* rules remain
   intact for fallback or future variants.
   ============================================================ */

/* Section heading with horizontal rules */
.bidonex-kreator .order-section.order-line-style{
  padding-top:6px;
}
.bidonex-kreator .order-section.order-line-style > .cfg-label{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--text-2);
  margin-bottom:24px;
  text-align:center;
  position:relative;
}
.bidonex-kreator .order-section.order-line-style > .cfg-label::before,
.bidonex-kreator .order-section.order-line-style > .cfg-label::after{
  content:"";
  position:absolute;
  top:50%;
  width:calc(50% - 80px);
  height:1px;
  background:var(--border);
}
.bidonex-kreator .order-section.order-line-style > .cfg-label::before{left:0}
.bidonex-kreator .order-section.order-line-style > .cfg-label::after{right:0}

/* Field wrapper */
.bidonex-kreator .order-line-field{
  position:relative;
  margin-bottom:22px;
}

/* Inputs — strip old box styles, keep only bottom line */
.bidonex-kreator .order-line-field .order-input,
.bidonex-kreator .order-line-field .order-textarea{
  width:100%;
  background:transparent;
  border:none;
  border-bottom:1.5px solid var(--border);
  border-radius:0;
  padding:10px 4px 10px 28px;
  font-family:'Roboto',sans-serif;
  font-size:14px;
  font-weight:400;
  color:var(--text);
  outline:none;
  transition:border-color .3s var(--ease);
  box-shadow:none;
  -webkit-appearance:none;
  appearance:none;
}
.bidonex-kreator .order-line-field .order-textarea{
  min-height:60px;
  resize:vertical;
  line-height:1.55;
}

/* Placeholder invisible so label can act as placeholder */
.bidonex-kreator .order-line-field .order-input::placeholder,
.bidonex-kreator .order-line-field .order-textarea::placeholder{
  color:transparent;
}

/* Floating label (positioned after input in DOM so + selector works) */
.bidonex-kreator .order-line-field .order-label{
  position:absolute;
  left:28px;
  top:10px;
  font-family:'Roboto',sans-serif;
  font-size:14px;
  font-weight:400;
  color:var(--text-3);
  pointer-events:none;
  transition:all .25s var(--ease);
  transform-origin:left top;
  /* Reset old label styles */
  margin-bottom:0;
  letter-spacing:normal;
  text-transform:none;
}

/* Focus / filled → float label up */
.bidonex-kreator .order-line-field .order-input:focus,
.bidonex-kreator .order-line-field .order-textarea:focus,
.bidonex-kreator .order-line-field .order-input:not(:placeholder-shown),
.bidonex-kreator .order-line-field .order-textarea:not(:placeholder-shown){
  border-bottom-color:var(--accent);
}
.bidonex-kreator .order-line-field .order-input:focus + .order-label,
.bidonex-kreator .order-line-field .order-textarea:focus + .order-label,
.bidonex-kreator .order-line-field .order-input:not(:placeholder-shown) + .order-label,
.bidonex-kreator .order-line-field .order-textarea:not(:placeholder-shown) + .order-label{
  transform:translateY(-20px) scale(.75);
  color:var(--accent);
}

/* Invalid state */
.bidonex-kreator .order-line-field .order-input.invalid{
  border-bottom-color:rgba(198,40,40,.65);
}
.bidonex-kreator .order-line-field .order-input.invalid:focus{
  box-shadow:none;
}

/* Icon inside field */
.bidonex-kreator .order-line-icon{
  position:absolute;
  left:0;
  top:10px;
  width:18px;
  height:18px;
  color:var(--text-3);
  transition:color .3s;
  pointer-events:none;
}
.bidonex-kreator .order-line-field:focus-within .order-line-icon{
  color:var(--accent);
}

/* Animated underline (center-out via left:0 width transition) */
.bidonex-kreator .order-line-underline{
  position:absolute;
  bottom:0;
  left:0;
  height:2px;
  width:0;
  background:var(--accent);
  border-radius:1px;
  transition:width .4s var(--ease);
  pointer-events:none;
}
.bidonex-kreator .order-line-field:focus-within .order-line-underline{
  width:100%;
}

/* Error text */
.bidonex-kreator .order-line-field .field-error{
  font-size:11px;
  color:#c62828;
  margin-top:5px;
  min-height:0;
  opacity:0;
  transition:opacity .2s var(--ease);
  padding-left:28px;
}
.bidonex-kreator .order-line-field .field-error.visible{
  opacity:1;
}

/* Checkbox — ring style */
.bidonex-kreator .order-line-check{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:6px;
  cursor:pointer;
  padding-left:28px;
}
.bidonex-kreator .order-line-check .order-check-input{
  position:absolute;
  opacity:0;
  width:0;
  height:0;
}
.bidonex-kreator .order-line-check .order-check-box{
  width:20px;
  height:20px;
  border-radius:50%;
  border:2px solid var(--border-control);
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:all .3s var(--ease);
  position:relative;
  box-shadow:none;
}
.bidonex-kreator .order-line-check .order-check-box .order-line-check-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  transform:scale(0);
  transition:transform .3s var(--ease-spring);
  display:block;
}
.bidonex-kreator .order-line-check .order-check-input:checked + .order-check-box{
  border-color:var(--accent);
  background:transparent;
}
.bidonex-kreator .order-line-check .order-check-input:checked + .order-check-box .order-line-check-dot{
  transform:scale(1);
}
.bidonex-kreator .order-line-check .order-check-input:focus-visible + .order-check-box{
  outline:2px solid var(--accent);
  outline-offset:3px;
}
.bidonex-kreator .order-line-check .order-check-text{
  font-size:12.5px;
  color:var(--text-2);
  line-height:1.45;
  user-select:none;
}

/* Responsive */
@media(max-width:540px){
  .bidonex-kreator .order-section.order-line-style > .cfg-label::before,
  .bidonex-kreator .order-section.order-line-style > .cfg-label::after{
    width:calc(50% - 60px);
  }
  .bidonex-kreator .order-line-field{margin-bottom:18px}
  .bidonex-kreator .order-line-field .order-input,
  .bidonex-kreator .order-line-field .order-textarea{padding:10px 4px 10px 26px;font-size:13px}
  .bidonex-kreator .order-line-field .order-label{left:26px;font-size:13px}
  .bidonex-kreator .order-line-field .order-line-icon{width:16px;height:16px}
  .bidonex-kreator .order-line-field .order-input:focus + .order-label,
  .bidonex-kreator .order-line-field .order-textarea:focus + .order-label,
  .bidonex-kreator .order-line-field .order-input:not(:placeholder-shown) + .order-label,
  .bidonex-kreator .order-line-field .order-textarea:not(:placeholder-shown) + .order-label{
    transform:translateY(-18px) scale(.72);
  }
}
@media(max-width:360px){
  .bidonex-kreator .order-line-field .order-input,
  .bidonex-kreator .order-line-field .order-textarea{padding:9px 4px 9px 24px;font-size:12.5px}
  .bidonex-kreator .order-line-field .order-label{left:24px;font-size:12.5px}
  .bidonex-kreator .order-line-field .order-line-icon{width:14px;height:14px;top:9px}
}
