.ceadi-stock-page {
      --violet: #5b3fa3;
      --violet-dark: #4a3287;
      --violet-soft: #efe9ff;
      --violet-soft-2: #f7f4ff;
      --text: #1f2330;
      --muted: #667085;
      --border: #e6e2f3;
      --white: #ffffff;
      --success: #16a34a;
      --danger: #dc2626;

      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      min-height: 100vh;
      padding: 40px 20px 56px;
      background:
        radial-gradient(circle at top left, rgba(91, 63, 163, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(91, 63, 163, 0.06), transparent 24%),
        #f7f7fb;
      box-sizing: border-box;
    }

    .ceadi-stock-page *,
    .ceadi-stock-page *::before,
    .ceadi-stock-page *::after {
      box-sizing: border-box;
    }

    .ceadi-stock-page .wrap {
      max-width: 1120px;
      margin: 0 auto;
    }

    .ceadi-stock-page .hero {
      background: linear-gradient(135deg, #5b3fa3 0%, #6d4fc0 100%);
      color: #fff;
      border-radius: 28px;
      padding: 42px 34px;
      box-shadow: 0 18px 45px rgba(62, 39, 121, 0.18);
      position: relative;
      overflow: hidden;
      margin-bottom: 28px;
    }

    .ceadi-stock-page .hero::before,
    .ceadi-stock-page .hero::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
    }

    .ceadi-stock-page .hero::before {
      width: 220px;
      height: 220px;
      top: -70px;
      right: -60px;
    }

    .ceadi-stock-page .hero::after {
      width: 140px;
      height: 140px;
      bottom: -40px;
      right: 140px;
    }
    
    .ceadi-stock-page .hero-logo {
      display: block;
      width: 180px;
      max-width: 42vw;
      height: auto;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .ceadi-stock-page .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
      margin-bottom: 18px;
      backdrop-filter: blur(4px);
      position: relative;
      z-index: 1;
      text-decoration: none;
      color: #fff;
    }

    .ceadi-stock-page .hero h1 {
      margin: 0 0 12px;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      position: relative;
      z-index: 1;
    }

    .ceadi-stock-page .hero p {
      margin: 0;
      max-width: 720px;
      font-size: 17px;
      line-height: 1.65;
      color: rgba(255,255,255,0.9);
      position: relative;
      z-index: 1;
    }

    .ceadi-stock-page .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .ceadi-stock-page .section-head h2 {
      margin: 0;
      font-size: 28px;
      letter-spacing: -0.02em;
    }

    .ceadi-stock-page .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .ceadi-stock-page .stock-panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 10px 28px rgba(22, 25, 35, 0.04);
    }

    .ceadi-stock-page .stock-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .ceadi-stock-page .stock-title {
      font-size: 22px;
      font-weight: 800;
      margin: 0;
    }

    .ceadi-stock-page .stock-sub {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .ceadi-stock-page .stock-list {
      display: grid;
      gap: 12px;
    }

    .ceadi-stock-page .stock-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 20px;
      background: #fff;
      display: grid;
      grid-template-columns: 1.2fr auto auto;
      align-items: center;
      gap: 16px;
      min-height: 78px;
      box-shadow: 0 4px 14px rgba(22, 25, 35, 0.03);
    }

    .ceadi-stock-page .stock-name {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.06em;
      min-width: 0;
      word-break: break-word;
    }

    .ceadi-stock-page .stock-status {
      font-size: 13px;
      font-weight: 800;
      padding: 7px 12px;
      border-radius: 999px;
      color: #fff;
      white-space: nowrap;
    }

    .ceadi-stock-page .stock-status.ok {
      background: var(--success);
    }

    .ceadi-stock-page .stock-status.off {
      background: var(--danger);
    }

    .ceadi-stock-page .stock-count {
      font-size: 18px;
      font-weight: 800;
      color: #111827;
      white-space: nowrap;
    }

    .ceadi-stock-page .loading,
    .ceadi-stock-page .error {
      color: var(--muted);
      font-size: 15px;
      padding: 8px 2px;
    }

    .ceadi-stock-page .footer-note {
      text-align: center;
      margin-top: 22px;
      color: var(--muted);
      font-size: 14px;
    }

    @media (max-width: 900px) {
      .ceadi-stock-page .hero {
        padding: 30px 22px;
        border-radius: 22px;
      }

      .ceadi-stock-page .stock-item {
        grid-template-columns: 1fr auto;
      }

      .ceadi-stock-page .stock-count {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 560px) {
      .ceadi-stock-page {
        padding: 22px 14px 34px;
      }

      .ceadi-stock-page .hero {
        padding: 26px 18px;
      }

      .ceadi-stock-page .hero h1 {
        font-size: 30px;
        line-height: 1.15;
      }

      .ceadi-stock-page .hero p {
        font-size: 15px;
      }

      .ceadi-stock-page .section-head {
        flex-direction: column;
        align-items: start;
      }

      .ceadi-stock-page .stock-panel {
        padding: 18px;
        border-radius: 20px;
      }

      .ceadi-stock-page .stock-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
        border-radius: 16px;
      }

      .ceadi-stock-page .stock-name,
      .ceadi-stock-page .stock-count {
        font-size: 16px;
      }

      .ceadi-stock-page .stock-status {
        width: fit-content;
      }
    }
