.elementor-2186 .elementor-element.elementor-element-efd41a9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-6ae69b9 */:root {
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dark: #8B6914;
    --cream: #F5F0E8;
    --charcoal: #0D0D0D;
    --surface: #141414;
    --surface-2: #1E1E1E;
    --text-muted: #888;
    --radius: 12px;
  }

  .botox-html *, .botox-html *::before, .botox-html *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .botox-html {
    background: var(--charcoal);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 80px;
    overflow-x: hidden;
  }

  /* ── Header ── */
  .botox-html .header {
    text-align: center;
    margin-bottom: 48px;
  }
  .botox-html .clinic-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .botox-html .header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--cream);
  }
  .botox-html .header h1 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .botox-html .header-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
    opacity: 0.6;
  }
  .botox-html .header p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  /* ── Wheel Container ── */
  .botox-html .wheel-wrap {
    position: relative;
    width: min(620px, 92vw);
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .botox-html .wheel-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default;
  }

  /* Segment styles */
  .botox-html .segment-group { cursor: pointer; }
  .botox-html .segment-path {
    fill: var(--surface-2);
    stroke: #222;
    stroke-width: 2;
    transition: fill 0.25s, filter 0.25s;
  }
  .botox-html .segment-group:hover .segment-path {
    fill: #2a2318;
    filter: drop-shadow(0 0 18px rgba(201,168,76,0.35));
  }
  .botox-html .segment-gold-ring {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1;
    opacity: 0.5;
    pointer-events: none;
  }
  .botox-html .segment-icon {
    font-size: 20px;
    text-anchor: middle;
    dominant-baseline: central;
    pointer-events: none;
    transition: transform 0.2s;
  }
  .botox-html .segment-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-anchor: middle;
    dominant-baseline: central;
    fill: var(--cream);
    text-transform: uppercase;
    pointer-events: none;
  }
  .botox-html .segment-label-small {
    font-size: 7px;
    fill: var(--text-muted);
    letter-spacing: 0.8px;
  }

  /* Center hub */
  .botox-html .hub-outer { fill: #0D0D0D; stroke: var(--gold); stroke-width: 1.5; }
  .botox-html .hub-inner { fill: var(--surface); }
  .botox-html .hub-text-top {
    font-family: 'Montserrat', sans-serif;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 3px;
    text-anchor: middle;
    fill: var(--gold);
    text-transform: uppercase;
  }
  .botox-html .hub-text-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    text-anchor: middle;
    fill: var(--cream);
  }
  .botox-html .hub-text-bottom {
    font-family: 'Montserrat', sans-serif;
    font-size: 6px;
    letter-spacing: 2px;
    text-anchor: middle;
    fill: var(--text-muted);
    text-transform: uppercase;
  }

  /* ── Instruction ── */
  .botox-html .hint {
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 28px;
  }
  .botox-html .hint span { color: var(--gold); }

  /* ── Lightbox ── */
  .botox-html .lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(6px);
    padding: 20px;
  }
  .botox-html .lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .botox-html .lightbox {
    background: var(--surface);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s;
  }
  .botox-html .lightbox-overlay.active .lightbox {
    transform: translateY(0) scale(1);
  }
  .botox-html .lightbox-top {
    padding: 36px 40px 28px;
    border-bottom: 1px solid #222;
  }
  .botox-html .lightbox-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .botox-html .lightbox h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .botox-html .lightbox-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 600px;
  }
  .botox-html .lightbox-body {
    padding: 32px 40px 40px;
  }
  .botox-html .ba-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .botox-html .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .botox-html .ba-slot {
    aspect-ratio: 4/3;
    border-radius: 10px;
    border: 1px dashed #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
  }
  .botox-html .ba-slot-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.6);
    padding: 3px 8px;
    border-radius: 4px;
  }
  .botox-html .ba-slot-icon {
    font-size: 36px;
    opacity: 0.18;
  }
  .botox-html .ba-slot-text {
    font-size: 11px;
    color: #444;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.6;
    padding: 0 20px;
  }
  .botox-html .ba-upload-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--surface-2);
    border: 1px solid #333;
    border-radius: 6px;
    color: var(--gold);
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .botox-html .ba-upload-btn:hover { border-color: var(--gold); background: #1a1710; }
  .botox-html .ba-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .botox-html .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  .botox-html .detail-card {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 18px 20px;
  }
  .botox-html .detail-card-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .botox-html .detail-card-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--cream);
  }
  .botox-html .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    border: 1px solid #333;
    color: var(--cream);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
    padding: 0;
  }
  .botox-html .close-btn:hover { background: #2a1a00; border-color: var(--gold); color: var(--gold); }

  /* hidden file inputs */
  .botox-html .file-input { display: none; }

  @media (max-width: 500px) {
    .botox-html .ba-grid { grid-template-columns: 1fr; }
    .botox-html .lightbox-top, .lightbox-body { padding: 24px 20px; }
  }/* End custom CSS */